Amazon SES SMTP with Django

前端 未结 7 1791
悲&欢浪女
悲&欢浪女 2021-01-30 05:48

I\'m trying to use Amazon\'s new SMTP service for SES with Django 1.3.1 but I\'m not having much luck.

I\'ve created my SES SMTP credentials and have this in my settings

7条回答
  •  难免孤独
    2021-01-30 06:21

    Since Django 1.7, you can send email with SSL natively without third party library.

    EMAIL_USE_SSL = True
    

    Docs

提交回复
热议问题