On Jul 7, 7:45 am, alecs <alecs....@gmail.com> wrote:
> I'm trying to send a e-mail, but getting this error. Don't know what
> to do... Any ideas?
> Thanks in advance.
>
> def urlsend(request, username):
>     if request.method == 'POST':
>         form = SendMailForm(request.POST)
>         if form.is_valid():
>             subject = form.cleaned_data['subject']
>             message = form.cleaned_data['message']
>             to_email = form.cleaned_data['to_email']
>             try:
>                 send_mail(subject, message, 'u...@exmpl.com',
> to_email, fail_silently = False,
>                     auth_user = 'u...@exmpl.com', auth_password =
> 'pass')
>             except Exception, e:
>                 raise ValueError,e
>             return HttpResponseRedirect('/'+username+'/')
>         else:
>             sendMail = SendMailForm(request.POST)
>             variables = RequestContext(request, {
>                 'username': username,
>                 'form' : form,
>             })
>             return render_to_response('send_mail.html', variables)
>         return HttpResponseRedirect('/'+username+'/')
>     else:
>         return HttpResponseRedirect('/'+username+'/')

This is clearly not the code that is producing that error, as you're
not using the attribute 'user' anywhere. Please can you post the
actual traceback, including the lines of code that are triggering the
error.

One issue that I can see is that to_email should be a list, not a
string. If you've only got one destination address, wrap it in a list
like this:
[to_email]
--
DR.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to