to send email with different #39;from#39; email address using gmail smtp server in django(在 django 中使用 gmail smtp 服务器发送具有不同“发件人电子邮件地址的电子邮件)
问题描述
我想使用 django app 中的 smtp gmail 服务器 向具有不同 from 字段值的用户发送电子邮件.我能够成功地将邮件发送给用户,但 from 字段不采用我在 send_mail() 中提供的值,而是采用 settings.py 中定义的 EMAIL_HOST_USER 值
I want to send an email to users with different from field values using smtp gmail server from the django app. I am able to send the mail successfully to users but the from field does not take the value that I provide in send_mail() but instead takes the EMAIL_HOST_USER value defined in settings.py
From 字段值应采用任何域电子邮件地址,即
From field value should take any domain email address i.e.
a mail from: xyz@yahoo.co.in or .com
or from: abc@hotmail.com
or so on
我怎样才能实现这种行为?请帮忙.我是使用 django 和电子邮件功能的新手.
How can I achieve this behavior? Please help. I am new to using django and email functionality.
推荐答案
您不能使用 Google 的 SMTP 服务器伪造电子邮件.他们将继续使用当前用户的信息(您提供的登录凭据).如果您想更改"/伪造电子邮件标头,请使用您自己的电子邮件服务器/SMTP
You cannot forge an email using Google's SMTP server. They will keep on using the current user's information (the login credentials you supplied). If you want to "change"/forge the email header, use your own email server/SMTP
这篇关于在 django 中使用 gmail smtp 服务器发送具有不同“发件人"电子邮件地址的电子邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 django 中使用 gmail smtp 服务器发送具有不同“发件人"电子邮件地址的电子邮件


基础教程推荐
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 筛选NumPy数组 2022-01-01