2016-12-15 15 views
0

djangoのEmailMultiAlternativesを使用して、アクションマークアップ付きのメールをGmailアカウント経由で送信しようとしています。私は正常に電子メールを送信することはできますが、電子メールマークアップには恵まれません。電子メールマークアップがdjangoで動作しませんsend_email

私はGoogle's quickstartに続き、それは動作します。 htmlファイルは

<html> 
    <head> 
    <script type="application/ld+json"> 
    { 
     "@context":  "http://schema.org", 
     "@type":   "EmailMessage", 
     "description": "Check this out", 
     "potentialAction": { 
     "@type": "ViewAction", 
     "target": "https://www.youtube.com/watch?v=eH8KwfdkSqU", 
     "url": "https://www.youtube.com/watch?v=eH8KwfdkSqU" 
     } 
    } 
    </script> 
    </head> 
    <body> 
    <p> 
     This a test for a Go-To action in Gmail. 
    </p> 
    </body> 
</html> 

受信した電子メールの送信元は次のようになります:

Subject: Test Email markup - Wed Dec 14 2016 20:00:41 GMT-0600 (CST) 
From: <my gmail>@gmail.com 
To: <my gmail>@gmail.com 
Content-Type: multipart/alternative; boundary=94eb2c11658811d31e0543a8d263 

--94eb2c11658811d31e0543a8d263 
Content-Type: text/plain; charset=UTF-8; format=flowed; delsp=yes 

This a test for a Go-To action in Gmail. 

--94eb2c11658811d31e0543a8d263 
Content-Type: text/html; charset=UTF-8 

<html> 
    <head> 
    <script type="application/ld+json"> 
    { 
     "@context":  "http://schema.org", 
     "@type":   "EmailMessage", 
     "description": "Check this out", 
     "potentialAction": { 
     "@type": "ViewAction", 
     "target": "https://www.youtube.com/watch?v=eH8KwfdkSqU", 
     "url": "https://www.youtube.com/watch?v=eH8KwfdkSqU" 
     } 
    } 
    </script> 
    </head> 
    <body> 
    <p> 
     This a test for a Go-To action in Gmail. 
    </p> 
    </body> 
</html> 
--94eb2c11658811d31e0543a8d263-- 

今すぐジャンゴで、私が持っているtest.htmlというGoogleのHTMLと同じテンプレートファイルをある

subject = "Test Subject" 
from_email = 'Name <%s>' % settings.EMAIL_HOST_USER 
to = '<my gmail>@gmail.com' 
text_content = 'This is an important message.' 
msg = EmailMultiAlternatives(subject, text_content, from_email, [to]) 
msg.attach_alternative(render_to_string('email/test.html'), "text/html") 
msg.send() 

例。

Djangoの電子メールの受信した電子メールの送信元は、次のようになります。

Content-Type: multipart/alternative; boundary="===============7033962557309231375==" 
MIME-Version: 1.0 
Subject: Test Subject 
From: Name <gmail i'm sending [email protected]> 
To: <my gmail>@gmail.com 
Date: Thu, 15 Dec 2016 02:14:54 -0000 
Message-ID: <[email protected]> 

--===============7033962557309231375== 
MIME-Version: 1.0 
Content-Type: text/plain; charset="utf-8" 
Content-Transfer-Encoding: 7bit 

This is an important message. 
--===============7033962557309231375== 
MIME-Version: 1.0 
Content-Type: text/html; charset="utf-8" 
Content-Transfer-Encoding: 7bit 

<html> 
    <head> 
    <script type="application/ld+json"> 
    { 
     "@context":  "http://schema.org", 
     "@type":   "EmailMessage", 
     "description": "Check this out", 
     "potentialAction": { 
     "@type": "ViewAction", 
     "target": "https://www.youtube.com/watch?v=eH8KwfdkSqU" 
     } 
    } 
    </script> 
    </head> 
    <body> 
    <p> 
     This a test for a Go-To action in Gmail. 
    </p> 
    </body> 
</html> 
--===============7033962557309231375==-- 

私が見る主な違いは、エンコードとコンテンツタイプのエンコードの前後に引用符です。それは問題の根源ですか、もしそうなら、私はそれをどのように修正しますか?

ありがとうございました!

答えて

0

私はそれを理解しました - https://developers.google.com/gmail/markup/registering-with-googleで詳しく説明しています。 Googleはあなたにマークアップメールを送信することができ、すべてのマークアップが表示されます。ただし、他のユーザーが参照できるようにするには、運用サーバーからコピーを送信した後で承認する必要があります。

関連する問題