当我以这种方式调用 send_templated_mail() 时:
from templated_email import send_templated_mail
send_templated_mail(
template_name='welcome',
from_email='from@email.com',
recipient_list=['recipient@email.com'],
context={
'username':'username1',
'full_name':'user name',
'signup_date':'today',
},
headers={'My-Custom-Header':'Custom Value'}
)
我收到以下类型错误:
send_templated_mail() 至少需要 4 个参数(1 个给定)
根据我的阅读,只有 3 个必需的参数,它们是列出的前三个。知道是什么导致了 TypeError 吗?提前致谢。
以下是连接到 MailChimp 的相关 settings.py 设置:
TEMPLATED_EMAIL_BACKEND = 'templated_email.backends.mailchimp_sts.TemplateBackend'
MAILCHIMP_API_KEY = 'myAPIkey'
#For the django back-end specifically
TEMPLATED_EMAIL_MAILCHIMP = {
'welcome':{
'subject':'Welcome to my website',
'track_opens':True,
'track_clicks':False,
'tags':['my','little','pony'],
}
}
#Email template repository
TEMPLATED_EMAIL_TEMPLATE_DIR = 'templated_email/'
TEMPLATED_EMAIL_FILE_EXTENSION = 'email'