Amazon SES send_email带有间距/换行符的文本正文

时间:2016-02-15 18:33:53

标签: email amazon-web-services boto3

我面临的问题是,我的所有文字电子邮件都被整理在一起,而且在发送过程中没有新线路。

以下是代码:

def send_ses_message(email_to, subject, body):
    ses = init_ses_internal()
    if ses:
        ses.send_email(
            Source='no-reply@domain.com',
            Destination={
                'ToAddresses': [
                    email_to,
                ],
            },
            Message={
                'Subject': {
                    'Data': subject,
                },
                'Body': {
                    'Text': {
                        'Data': body,
                        'Charset': 'UTF-8',
                    },
                    'Html': {
                        'Data': body,
                        'Charset': 'UTF-8',
                    },
                }
            },
            ReplyToAddresses=[
                'mharris@domain.com', # just in case someone replies to a no-reply@ address I'll receive them
            ],
            ReturnPath='mharris@domain.com', # bounce backs will come to me also
        )
        return True

我最近尝试强制使用UTF-8,希望新行能够持续存在。之后我添加了\ n,其中应该存在一个新行。

以下是电子邮件的示例:

    def send_reset_email(self, email_to, unique_id):
        subject = "Company Password Reset"
        body = """
Hello!\n\n

We have received a request to reset your password.\n

Please click the link below to proceed with resetting your password. Note: this link will expire in 1 hour.\n\n

http://staging.domain.com/password/reset/{}\n\n

If you did not request this reset you can safely ignore this e-mail.\n\n

Thank you for choosing Company!\n\n

The Company Team\n
www.company.com\n
""".format(unique_id)
        send_ses_message(email_to, subject, body)

请让我知道我可以做些什么来确保新线在亚马逊SES上保持不变。谢谢!

3 个答案:

答案 0 :(得分:3)

编辑:我在与Outlook 2013客户端遇到类似问题。在换行符为我工作之前添加制表符。

\n替换\t\n\t\r\n

How do I format a String in an email so Outlook will print the line breaks?

答案 1 :(得分:0)

SES中的默认内容类型似乎是text / html,因此使用<br>代替\ n对我有用

答案 2 :(得分:0)

在将日志文件的内容(存储在变量中)发送到HTML BODY时,我遇到了类似的问题。 如下将新行替换为"<br />"可以解决此问题。下面的命令用"<br />"替换文本中的所有换行符。

mytext = '<br />'.join(mytext.split("\n"))