简单(st)邮件服务

时间:2014-05-27 08:51:14

标签: email email-integration

我一直在寻找MailChimp和其他一些电子邮件服务,以便向客户客户发送批量邮件,但是他们可以使用大/缺少的功能/等等。

我想偶尔向3-4-500位收件人发送邮件。

基本上,我想要一个API调用来执行以下操作(示例逻辑):

url: /api/send-these-mails-please

[
  {
    "recipient": "someone@gmail.com",
    "from": "Me <myself@iam.com>",
    "content": "<html><h1>This is the mail content for Someone</h1></html>"
  },
  {
    "recipient": "someone@else.com",
    "from": "Me <myself@iam.com>",
    "content": "<html><h1>This is for Someone Else</h1></html>"
  }
]

我想在我自己的应用程序中保留所有模板和逻辑,只希望第三方服务处理实际的邮件部分。

这可能吗?有人知道是否有这样的服务?

1 个答案:

答案 0 :(得分:0)

我不确定您是否仍在寻找邮件服务,但Mandrill应该允许您执行您想要的操作(JSON调用RESTful API)。

相关问题