有没有使用 Rails 运行 smtp 服务器的示例?
有没有人见过如何使用 Heroku 上托管的 Rails 运行 smtp 服务器的示例?
我有兴趣将邮件发送到我自己的 smtp 服务器,通过添加页脚、添加链接跟踪等使用 Rails 操作内容,然后再次发送出去。
一旦我有了数据,就很容易了。不知道从哪里开始设置 smtp。
或者,是否有任何 smtp 服务可以将数据简单地发布到我的应用程序?
Has anyone seen any examples of how to run an smtp server with Rails hosted on heroku?
I'm interested to send mail to my own smtp server, manipulate the content with rails by adding a footer, adding link tracking etc, then send it out again.
Once I have the data, easy. Not sure where to begin in terms of setting up smtp.
Alternatively, are there any smtp services out there that will simply POST the data to my app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在这里查看 SendGrid http://sendgrid.com/
他们有一些很棒的 API,并且应该能够启用您想要的功能。
Take a look at SendGrid here http://sendgrid.com/
They've got some great APIs, and should be able to enable what you want.
如果您希望通过帖子向您的应用程序发送入站电子邮件,请访问 cloudmailin.com
If you want inbound email via a post to your application look at cloudmailin.com
它是 python,而不是 RoR,但 Lamson 项目与您所说的非常接近。
http://lamsonproject.org/
(谢谢 Zed!)
It's python, not RoR, but the Lamson project is pretty close to what you are talking about.
http://lamsonproject.org/
(Thanks Zed!)