Does anyone had success getting Django to send emails when hosting on Dreamhost?

后端 未结 5 1791
无人共我
无人共我 2021-02-04 17:53

Greetings,

Does anyone know what are the required fields to have Django send emails when a \"500 Internal Server Error\" happend? I am hosting my project on Dreamhost an

5条回答
  •  闹比i
    闹比i (楼主)
    2021-02-04 18:26

    Yes, I am, same on dreamhost, but I am using gmail to send email like following sample code

    import smtplib
    
    m = smtplib.SMTP("smtp.gmail.com", 587)
    m.ehlo()
    m.starttls()
    m.ehlo()
    m.login(USERNAME, PASSWD)
    m.sendmail(user, to, "From: %s\nTo: %s\n\nHello World!"%(USERNAME,TOADDR))
    m.close()
    

提交回复
热议问题