as far as i remember by going through documentation od django on sending
mail send_mail() does not have any parameter called headers.

On 14 January 2013 01:53, Bobby Roberts <[email protected]> wrote:

> 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=['[email protected]']
>                                 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 [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>



-- 
ANKIT BAGARIA

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to