gpt4 book ai didi

django - 在 OS X leopard 上的 django 开发环境中发送电子邮件

转载 作者:行者123 更新时间:2023-12-04 06:52:46 26 4
gpt4 key购买 nike

Hay,我想知道如何设置 django 以便我可以从标准 Leopard 安装发送电子邮件。

在 php 中,我只使用 mail() 并为我发送邮件。

谢谢

最佳答案

来自 the docs :

Mail is sent using the SMTP host and port specified in the EMAIL_HOST and EMAIL_PORT settings. The EMAIL_HOST_USER and EMAIL_HOST_PASSWORD settings, if set, are used to authenticate to the SMTP server, and the EMAIL_USE_TLS setting controls whether a secure connection is used.



所以设置你的 EMAIL_HOST到友好的 SMTP 服务器,它将为您中继邮件,然后离开。

再次,来自文档:
from django.core.mail import send_mail

send_mail('Subject here', 'Here is the message.', 'from@example.com',
['to@example.com'], fail_silently=False)

关于django - 在 OS X leopard 上的 django 开发环境中发送电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2881488/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com