web-dev-qa-db-ja.com

Djangoを使用してメールテンプレートを作成する

次のようなDjangoテンプレートを使用して、HTMLメールを送信します。

<html>
<body>
hello <strong>{{username}}</strong>
your account activated.
<img src="mysite.com/logo.gif" />
</body>

send_mailについて何も見つかりません。Django-mailerは動的データなしでHTMLテンプレートのみを送信します。

Djangoのテンプレートエンジンを使用して電子メールを生成するにはどうすればよいですか?

190
Anakin

ドキュメント から、次のような代替コンテンツタイプを使用するHTML電子メールを送信します。

from Django.core.mail import EmailMultiAlternatives

subject, from_email, to = 'hello', '[email protected]', '[email protected]'
text_content = 'This is an important message.'
html_content = '<p>This is an <strong>important</strong> message.</p>'
msg = EmailMultiAlternatives(subject, text_content, from_email, [to])
msg.attach_alternative(html_content, "text/html")
msg.send()

電子メールには2つのテンプレートが必要になるでしょう。プレーンテキストのテンプレートは、email.txtの下のテンプレートディレクトリに保存されています。

Hello {{ username }} - your account is activated.

email.htmlの下に保存されているHTMLyの場合:

Hello <strong>{{ username }}</strong> - your account is activated.

次に、次のように get_template を使用して、これら両方のテンプレートを使用して電子メールを送信できます。

from Django.core.mail import EmailMultiAlternatives
from Django.template.loader import get_template
from Django.template import Context

plaintext = get_template('email.txt')
htmly     = get_template('email.html')

d = Context({ 'username': username })

subject, from_email, to = 'hello', '[email protected]', '[email protected]'
text_content = plaintext.render(d)
html_content = htmly.render(d)
msg = EmailMultiAlternatives(subject, text_content, from_email, [to])
msg.attach_alternative(html_content, "text/html")
msg.send()
357
Dominic Rodger

少年少女!

send_email メソッドのDjangoの1.7以降、html_messageパラメーターが追加されました。

html_message:html_messageが指定されている場合、結果の電子メールは、text/plainコンテンツタイプがmessageで、text/htmlコンテンツタイプがhtml_messageのマルチパート/代替電子メールになります。

したがって、次のことができます。

from Django.core.mail import send_mail
from Django.template.loader import render_to_string


msg_plain = render_to_string('templates/email.txt', {'some_params': some_params})
msg_html = render_to_string('templates/email.html', {'some_params': some_params})

send_mail(
    'email title',
    msg_plain,
    '[email protected]',
    ['[email protected]'],
    html_message=msg_html,
)
208
andilabs

私は Django-templated-email を作成しました。この解決策に触発されて、この問題を解決するために努力しました(そして、ある時点でDjangoテンプレートの使用からmailchimpなど。自分のプロジェクト用のトランザクション用のテンプレート電子メールのテンプレートのセット。それでもまだ進行中ですが、上記の例では次のようにします。

from templated_email import send_templated_mail
send_templated_mail(
        'email',
        '[email protected]',
        ['[email protected]'],
        { 'username':username }
    )

Settings.pyに以下を追加すると(例を完了するため):

TEMPLATED_EMAIL_Django_SUBJECTS = {'email':'hello',}

これにより、通常のDjangoテンプレートdirs/loaders(見つからない場合は文句を言う)で、それぞれ通常の部分とhtml部分の「templated_email/email.txt」と「templated_email/email.html」という名前のテンプレートが自動的に検索されます。それらの少なくとも1つ)。

26
Darb

EmailMultiAlternativesおよびrender_to_stringを使用して、2つの代替テンプレート(1つはプレーンテキストで、もう1つはhtml)を使用します。

from Django.core.mail import EmailMultiAlternatives
from Django.template import Context
from Django.template.loader import render_to_string

c = Context({'username': username})    
text_content = render_to_string('mail/email.txt', c)
html_content = render_to_string('mail/email.html', c)

email = EmailMultiAlternatives('Subject', text_content)
email.attach_alternative(html_content, "text/html")
email.to = ['[email protected]']
email.send()
14
Rick Westera

Django Simple Mail を作成して、送信するすべてのトランザクションメール用のシンプルでカスタマイズ可能な再利用可能なテンプレートを作成しました。

メールの内容とテンプレートは、Djangoの管理者から直接編集できます。

あなたの例では、あなたのメールを登録します:

from simple_mail.mailer import BaseSimpleMail, simple_mailer


class WelcomeMail(BaseSimpleMail):
    email_key = 'welcome'

    def set_context(self, user_id, welcome_link):
        user = User.objects.get(id=user_id)
        return {
            'user': user,
            'welcome_link': welcome_link
        }


simple_mailer.register(WelcomeMail)

そして、この方法で送信します。

welcome_mail = WelcomeMail()
welcome_mail.set_context(user_id, welcome_link)
welcome_mail.send(to, from_email=None, bcc=[], connection=None, attachments=[],
                   headers={}, cc=[], reply_to=[], fail_silently=False)

フィードバックをお寄せください。

4
Charlesthk

Django Mail Templatedは、Djangoテンプレートシステムで電子メールを送信する機能豊富なDjangoアプリケーションです。 。

インストール:

pip install Django-mail-templated

設定:

INSTALLED_APPS = (
    ...
    'mail_templated'
)

テンプレート:

{% block subject %}
Hello {{ user.name }}
{% endblock %}

{% block body %}
{{ user.name }}, this is the plain text part.
{% endblock %}

Python:

from mail_templated import send_mail
send_mail('email/hello.tpl', {'user': user}, from_email, [user.email])

詳細: https://github.com/artemrizhov/Django-mail-templated

3
raacer

例にエラーがあります。..書かれているとおりに使用すると、次のエラーが発生します。

<type 'exceptions.Exception'>: 'dict'オブジェクトには属性 'render_context'がありません

次のインポートを追加する必要があります。

from Django.template import Context

そして、辞書を次のように変更します。

d = Context({ 'username': username })

http://docs.djangoproject.com/en/1.2/ref/templates/api/#rendering-a-context を参照してください

3
idbill

メールの動的な電子メールテンプレートが必要な場合は、データベーステーブルに電子メールの内容を保存します。これは、データベースにHTMLコードとして保存したものです=

<p>Hello.. {{ first_name }} {{ last_name }}.  <br> This is an <strong>important</strong> {{ message }}
<br> <b> By Admin.</b>

 <p style='color:red'> Good Day </p>

あなたの意見では:

from Django.core.mail import EmailMultiAlternatives
from Django.template.loader import get_template

def dynamic_email(request):
    application_obj = AppDetails.objects.get(id=1)
    subject = 'First Interview Call'
    email = request.user.email
    to_email = application_obj.email
    message = application_obj.message

    text_content = 'This is an important message.'
    d = {'first_name': application_obj.first_name,'message':message}
    htmly = FirstInterviewCall.objects.get(id=1).html_content #this is what i have saved previously in database which i have to send as Email template as mentioned above HTML code

    open("partner/templates/first_interview.html", "w").close() # this is the path of my file partner is the app, Here i am clearing the file content. If file not found it will create one on given path.
    text_file = open("partner/templates/first_interview.html", "w") # opening my file
    text_file.write(htmly) #putting HTML content in file which i saved in DB
    text_file.close() #file close

    htmly = get_template('first_interview.html')
    html_content = htmly.render(d)  
    msg = EmailMultiAlternatives(subject, text_content, email, [to_email])
    msg.attach_alternative(html_content, "text/html")
    msg.send()

これにより、Dbに保存した動的HTMLテンプレートが送信されます。

0
Javed

snippet を作成しました。これにより、データベースに保存されたテンプレートでレンダリングされた電子メールを送信できます。例:

EmailTemplate.send('expense_notification_to_admin', {
    # context object that email template will be rendered with
    'expense': expense_request,
})
0
Andrey Zarubin