gpt4 book ai didi

python - Sendgrid 示例示例不起作用以及如何向多个收件人发送电子邮件?

转载 作者:行者123 更新时间:2023-12-04 13:14:13 25 4
gpt4 key购买 nike

我已经根据代码要求创建了一个 API key 并将其添加到环境中。
下面是我正在使用的代码,并遵循了提供的步骤 here.

# using SendGrid's Python Library
# https://github.com/sendgrid/sendgrid-python
import os
from sendgrid import SendGridAPIClient
from sendgrid.helpers.mail import Mail

message = Mail(
from_email='from_email@example.com',
to_emails='to@example.com',
subject='Sending with Twilio SendGrid is Fun',
html_content='<strong>and easy to do anywhere, even with Python</strong>')
try:
sg = SendGridAPIClient(os.environ.get('SENDGRID_API_KEY'))
response = sg.send(message)
print(response.status_code)
print(response.body)
print(response.headers)
except Exception as e:
print(e.message)

它抛出这个错误:

Traceback (most recent call last):
File "sendgrid_email.py", line 18, in <module>
print(e.message)
AttributeError: "ForbiddenError" object has no attribute "message"

并且在打印异常时显示pylint警告-

Instance of "Exception" has no "message" member

关于我做错了什么或遗漏了什么有什么想法吗?

此外,to_emails 只有一个电子邮件地址,我们如何附加多个收件人?

最佳答案

授予 API Key 其完全访问权限,按照以下步骤操作:

  1. 设置
  2. API key
  3. 编辑 API key
  4. 完全访问权限
  5. 更新

将您的域列入白名单,按照以下步骤操作:

  1. 设置
  2. 发件人身份验证
  3. 域认证
  4. 选择 DNS 主机
  5. 输入您的域名
  6. 复制所有记录并将它们放入您的高级 DNS 管理控制台

注意:添加记录时,请确保主机中没有域名。将其剪掉。

如果您不想验证域,您也可以尝试使用单一发件人验证

注意:记录开始运行可能需要一些时间。


如果你使用的是pyinter,e.message会说

Instance of 'Exception' has no 'message' member

这是因为 message 属性是由 sendgrid 动态生成的,而 pylinter 无法访问,因为它在运行前不存在。

因此,为防止出现这种情况,在文件顶部或 print(e.message) 行上方,您需要添加以下任一内容,它们的含义相同-

# pylint: disable=no-member

E1101 是no-member 的代码,还好here

# pylint: disable=E1101

现在下面的代码应该适合你了。只需确保您在环境中设置了 SENDGRID_API_KEY 即可。如果没有,您也可以直接用 os.environ.get("SENDGRID_API_KEY") 替换它,但这不是一个好的做法。

# pylint: disable=E1101

import os
from sendgrid import SendGridAPIClient
from sendgrid.helpers.mail import Mail

message = Mail(
from_email="from_email@your-whitelisted-domain.com",
to_emails=("recipient1@example.com", "recipient2@example.com"),
subject="Sending with Twilio SendGrid is Fun",
html_content="<strong>and easy to do anywhere, even with Python</strong>")
try:
sg = SendGridAPIClient(os.environ.get("SENDGRID_API_KEY"))
response = sg.send(message)
print(response.status_code)
print(response.body)
print(response.headers)
except Exception as e:
print(e.message)

to_emails 可以接收多个收件人的元组。例如

to_emails=("recipient1@example.com", "recipient2@example.com"),

关于python - Sendgrid 示例示例不起作用以及如何向多个收件人发送电子邮件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61989808/

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