gpt4 book ai didi

python - 通过 Sendgrid 发送电子邮件时无法换行

转载 作者:太空狗 更新时间:2023-10-30 01:50:32 25 4
gpt4 key购买 nike

我正在使用 django.core.mail 发送电子邮件。我想在电子邮件的某些位置实现单行换行,如下所示:

Line 1
Line 2

Line 3
Line 4

我尝试在 Line 1Line 3 以及 \n\n 之后使用 \n 来执行此操作在第 2 行第 4 行 之后。

当我发送邮件时,收到的是这样的:

Line 1 Line 2

Line 3 Line 4

根据其他 StackOverflow 答案的建议,我尝试使用 django.template.loader.render_to_string 方法从文件生成适当的字符串,但它生成的字符串带有 \n 在我放置它们的确切位置,因此在发送电子邮件时它会产生相同的不良结果。

当我将字符串打印到 stdout 时,它会按预期显示。

总而言之,\n\n 可以正常工作,但是 \n 在通过 Django 的 send_mail 发送电子邮件时被转换为空格。如何解决?请注意,此问题是关于纯文本电子邮件,而不是 HTML 电子邮件。

编辑:来源,如评论中所要求:

from django.core.mail import send_mail
send_mail(
'Test subject',
'Line 1\nLine 2\n\nLine 3\nLine 4\n\n',
'noreply@test.com',
['myemail@gmail.com'],
)

通过 SendGrid 使用 SMTP 发送,如我的 settings.py 文件中所指定:

EMAIL_HOST = 'smtp.sendgrid.net'
EMAIL_HOST_USER = 'myusername'
EMAIL_HOST_PASSWORD = 'mypassword'
EMAIL_PORT = 587
EMAIL_USE_TLS = True

最佳答案

发生这种情况是因为您正在使用 Sendgrid,它 in some cases will convert your plain text messages to HTML .很可能您已将其配置为执行打开/点击跟踪,但它无法以纯文本形式执行这些操作,因此它将您的消息转换为 HTML。

上面的链接提供了这些解决方案:

  1. You can turn off the filters causing the conversion from plain text to HTML.

  2. If you start each line with a space, this will add a “preformatted” tag around the line.

  3. You can separate new sentences with double newlines, which will add a "paragraph" tag around the sentence.

  4. You can convert your message to HTML, bypassing our need to convert it altogether

  5. To disable conversion globally, visit Mail Settings --> Plain Content and enabled the suppression.

关于python - 通过 Sendgrid 发送电子邮件时无法换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38158192/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com