编程语言
首页 > 编程语言> > Sendgrid Python库和模板

Sendgrid Python库和模板

作者:互联网

我正在尝试使用我在Sendgrid上创建的模板.我想要做的是,使用我在Sendgrid上创建的模板发送电子邮件(替换替换标签).

这是我试过的 –

import sendgrid
sg = sendgrid.SendGridClient('<username>', '<password>')
message = sendgrid.Mail()
message.add_to('<to-email-address>')
message.set_subject('My Test Email')
message.add_substitution('customer_link', 'http://my-domain.com/customer-id')
message.add_filter('templates', 'enable', '1')
message.add_filter('templates', 'template_id', '<alphanumeric-template-id>')
message.add_from('<from-email-address>')
status, msg = sg.send(message)

但是,这给了我一个'{“errors”:[“Missing email body”],“message”:“error”}’的错误.我尝试添加以下行但仍然是相同的错误 –

message.set_html('')
message.set_text('')

所以,使用set_html后我使用的确切代码是 –

import sendgrid
sg = sendgrid.SendGridClient('<username>', '<password>')
message = sendgrid.Mail()
message.add_to('<to-email-address>')
message.set_subject('My Test Email')
message.add_substitution('customer_link', 'http://my-domain.com/customer-id')
message.add_filter('templates', 'enable', '1')
message.add_filter('templates', 'template_id', '<alphanumeric-template-id>')
message.add_from('<from-email-address>')
message.set_html('')
message.set_text('')
status, msg = sg.send(message)

我在这里错过了什么?该库的python文档似乎不包含任何内容.

编辑 – 我找到的解决方法之一来自下面的答案.我设置了message.set_html(”)和message.set_text(”),基本上,给出一个空白字符串.但这很奇怪,但适用于这种情况.

解决方法:

official documentation它确实很差,因为它只是提到了一个例子.但是,它为您提供了一个指向其Github sendgrid-python存储库的链接,您可以在其中找到更广泛的示例和代码本身(有时可以更快地查看它!).

在这里找到Github page中列出的完整示例:

import sendgrid

sg = sendgrid.SendGridClient('YOUR_SENDGRID_USERNAME', 'YOUR_SENDGRID_PASSWORD')

message = sendgrid.Mail()
message.add_to('John Doe <john@email.com>')
message.set_subject('Example')
message.set_html('Body')
message.set_text('Body')
message.set_from('Doe John <doe@email.com>')
status, msg = sg.send(message)

#or

message = sendgrid.Mail(to='john@email.com', subject='Example', html='Body', text='Body', from_email='doe@email.com')
status, msg = sg.send(message)

但是,在这种情况下,您使用的是模板,在Sendgrid的博客中,他们提到:

07003

Do I have to use the body and subject substitution tags in my
template? What If I don’t want to pass any substitution variables in
my email?

No. You can pass a blank value through with your API call and not
specify any variables.

虽然显然它不是这样的,你需要在你的消息实例中附加某种html和文本.

因此,您发现的解决方法是:将html和文本设置为非空字符串:

message.set_html(' ')
message.set_text(' ')

标签:python,sendgrid
来源: https://codeday.me/bug/20190628/1315647.html