Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SMTPRecipientsRefused in django

Tags:

django

when i am trying to send mails through django I am getting the above error . Can you please tell the cause of this error and how to avoid it?

like image 744
prateek Avatar asked Apr 11 '11 15:04

prateek


1 Answers

The cause is that the SMTP server is refusing some of the recipients you're sending email to. The fix is either to not send email to those recipients, to reconfigure the SMTP server to accept them, or to find a different SMTP server to use.

like image 199
Ignacio Vazquez-Abrams Avatar answered Oct 01 '22 08:10

Ignacio Vazquez-Abrams