发件人地址与经过验证的发件人身份不匹配。在解决此错误之前无法发送邮件
The from address does not match a verified Sender Identity. Mail cannot be sent until this error is resolved
我关注这个link:
https://sendgrid.com/docs/ui/sending-email/sender-verification
在我的 sendgrid 帐户中,from_email 被设置为 verifie 单一发件人身份验证,但是当我在我的本地主机上发送电子邮件验证时,我仍然收到相同的消息:发件人地址没有匹配经过验证的发件人身份
我的配置:
EMAIL_HOST = 'smtp.sendgrid.net'
EMAIL_HOST_USER = 'apikey'
EMAIL_HOST_PASSWORD = 'your api generate password'
EMAIL_PORT = 587
EMAIL_USE_TLS = True
您需要在您的配置中添加另一行,其中包含经过验证的发件人地址:
DEFAULT_FROM_EMAIL = 'you@domain.com'
我关注这个link:
https://sendgrid.com/docs/ui/sending-email/sender-verification
在我的 sendgrid 帐户中,from_email 被设置为 verifie 单一发件人身份验证,但是当我在我的本地主机上发送电子邮件验证时,我仍然收到相同的消息:发件人地址没有匹配经过验证的发件人身份
我的配置:
EMAIL_HOST = 'smtp.sendgrid.net'
EMAIL_HOST_USER = 'apikey'
EMAIL_HOST_PASSWORD = 'your api generate password'
EMAIL_PORT = 587
EMAIL_USE_TLS = True
您需要在您的配置中添加另一行,其中包含经过验证的发件人地址:
DEFAULT_FROM_EMAIL = 'you@domain.com'