0

当我以这种方式调用 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'
4

1 回答 1

0

你也可以试试这个设置

from templated_email import send_templated_mail
send_templated_mail(
        'email',
        'from@yourwebsite.com',
        ['to@person.com'],
        { 'username':username1 }
    )

settings.py添加

TEMPLATED_EMAIL_DJANGO_SUBJECTS = {'email':'welcome',}

使用该行代码,它将自动查找名为“templated_email/email.txt”或“templated_email/email.html”的任何模板

于 2012-05-25T04:59:57.707 回答