我知道如何使用mandrill api发送电子邮件,我知道如何从webhooks中读取json数据。但是,有效地使用mandrill我需要发明电子邮件客户端。
有没有办法将mandrill集成到gmail或任何其他电子邮件服务/客户端..所以当我发送电子邮件时,他们会通过mandrill,当我收到电子邮件时,它会显示在那里。
或者像gui for mandrill?
理想情况下,这应该是应该发生的事情
有人向support@mycompany.com发送电子邮件
customer@abc.com> support@mycompany.com> mandrill> mandrillmiddle@mandrill.com> my@gmail.com
然后我回复它
me> mandrillmiddle@mandrill.com> support@mycompany.com> customer@abc.com
答案 0 :(得分:0)
发送:
Mandrill支持SMTP,因此您可以使用nodemailer之类的内容通过mandrill向您的客户发送电子邮件,请访问以下链接:
http://help.mandrill.com/entries/21738467-Using-Mandrill-s-SMTP-integration-with-Web-Frameworks
接收
要接收邮件,您可能会调用mandrill rest API,似乎有一个正式的包装器:
https://bitbucket.org/mailchimp/mandrill-api-node
希望它有所帮助。