在Android中使用Mandrill api发送附件

时间:2016-02-25 13:06:32

标签: android email email-attachments mandrill

我正在使用Mandrill应用程序从我的Android应用程序发送电子邮件。我正在尝试发送附件的电子邮件。但我无法发送附件。根据要求,我已将图像文件和文本文件转换为base64字符串并传递给mandrill api的json对象。但邮件依然没有附件。我提到this link将图像文件转换为base64。我还想将Doc,Ppts,Pdfs附加到附件中。如果有人知道请指导我。

1 个答案:

答案 0 :(得分:0)

查看此link,您需要填写附件数组。以下是相关的JSON部分:

"attachments": [
        {
            "type": "text/plain",
            "name": "myfile.txt",
            "content": "ZXhhbXBsZSBmaWxl"
        }
    ],

SparkPost等其他服务也提供了一种简单的方法。我提出SparkPost的原因是Mandrill首席执行官的这篇文章:http://blog.mailchimp.com/important-changes-to-mandrill/