通过向特定电子邮件地址发送邮件来添加博客
对于我们的朋友网站,我想创建一个功能,我和我的朋友可以将电子邮件发送到特殊的电子邮件地址: [电子邮件受保护]。我想使用给定的主题作为博客标题,使用邮件正文作为博客条目。发送邮件的时间戳必须成为博客保存的时间戳(至少这个时间戳必须存储在数据库中)并且只能处理一组指定的邮件地址(因此它不是公共服务)。
但我不知道如何做到这一点。像这样的事情是由 cronjobs 和 imap 还是其他东西完成的?我正在收集关于如何实现这一点的想法。我并不是要求您提供完整的工作代码,但关于要求的一些建议会很好。
For our friends-site I want to create a function where I, and my friends, can send an email to a special emailadres: [email protected]. I want to use the given subject as the blog-title and the mail-body to be the blog-entry. The timestamp the mail was sent must become the timestamp the blog is saved (at least this timestamp must be stored in the database) and only a specified set of mailaddress can be handled (so it's not a public service).
But I don't have a clue how to do this. Are things like this done by cronjobs and imap or something? I'm collecting thoughts on how to realize this. I'm not asking you to provide a fully working code but some suggestions on the requirements would be nice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
cronjob 登录电子邮件地址,下载任何邮件,并根据时间戳发布它。
您将需要:
Cronjobs 特别容易设置。我自己都对它如此简单感到惊讶。 不错的教程。
A cronjob logs into the email address, downloads any mail, and posts it according to time stamp.
You will need:
Cronjobs are particularly easy to setup. I was surprised myself at how simplistic it is. Decent tutorial.