我查看过Marketo电子邮件code samples,他们总是会参考创建和存储的电子邮件,或者最多,存储与链接到某些与潜在客户相关的信息的令牌。我发现没有任何东西满足简单的要求,例如发送带有动态内容的简单电子邮件。
我的电子邮件发件人界面如下:
interface IEmailDelivery
{
bool Send(IEnumerable<string> recipients, UserNotification notification);
}
我正在寻求使用Marketo API实现上述界面,其中UserNotification包含电子邮件的内容(主题,地址,正文,isHtml等)
答案 0 :(得分:2)
您可能正在寻找此过程:http://developers.marketo.com/blog/sending-transactional-emails-with-the-marketo-rest-api-part-2-custom-content/目前没有直接API来发送电子邮件,但这样可以自定义内容
答案 1 :(得分:2)
在培养客户/潜在客户时,Marketo电子邮件旨在用作营销活动的一部分。不幸的是,对于你的情况,Marketo并不是这项工作的最佳工具。 SMTP或基于云的emal解决方案(如Azure支持)或第三方(如mailchimp)更适合您的请求。 但是 - 如果您想使用marketo,您可以按照第一响应者发布的链接(http://developers.marketo.com/blog/sending-transactional-emails-with-the-marketo-rest-api-part-1/)。