i'm trying to set the reply-to as shown here but it's erroring out: textmessage = render_to_string('communications/email/text/contact.html', mydict) from_email=request.POST.get('Email','') to_email=['whate...@gmail.com'] subject = 'mysite Inquiry' iheaders = {'reply-to':request.POST.get('Email','')} send_mail(subject,textmessage,from_email,to_email, headers=iheaders)
Traceback: send_mail() got an unexpected keyword argument 'headers' What am i doing wrong here? -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/COfDjQrhzgEJ. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.