Im currently developping a small app. For testing purposes i want to send 
emails to google with a plus sign in the email adress. 
The smtp backend sends the mail but i never leaves the server.
What i tried:
"
from django.core.mail import EmailMessage
email = EmailMessage('Subject', 'Body', to=['t...@googlemail.com'])
email.send()
"
Works as supposed.

"
from django.core.mail import EmailMessage
email = EmailMessage('Subject', 'Body', to=['tes...@googlemail.com'])
email.send()
"
Does not work, but smtp backend reacts with status code 1, email never 
reach the mailbox

Anyone knows this issue, bug?

B.R.
Benjamin Boy

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/955b1e20-9d24-45f5-8fae-3b550d59a6c6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to