如何在加入 getresponse.com 一小时后发送电子邮件
大家好,
我在 getresponse.com 中有一个帐户,
我想在成员加入一小时后向我的邮件列表中的成员发送电子邮件。
请告诉我该怎么做
HI all,
I have an account in getresponse.com
I want to send emails to the members in my mailing list after one hour of their joining.
Please tell me how can i do this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我真的不知道 getresponse.com 到底是什么以及您的可能性是什么,但从 php 标签推断:
Php 脚本不能执行一小时 =>你必须安排这个。您需要一些数据库(或至少一个文件或其他东西)来存储有人加入时的信息以及计划运行的 cron 脚本,例如。每 5 分钟检查您的数据库,如果时间合适,会发送一封电子邮件,然后从数据库中删除该条目。
I don't really know what's that getresponse.com all about and what are your possibilities, but deducing from php tag:
Php scripts can't execute for an hour => you have to schedule this. You need some database(or at least a file or sth else) to store the information when someone joined and a cron script that's scheduled to run eg. every 5 minutes that checks your database and if the time is right sends an e-mail and then removes the entry from database.
管理界面允许您创建订阅者在订阅后 1 天以内收到的后续消息,因此您很可能必须通过他们的 API 调用发送该消息:
http://dev.getresponse.com/api-doc/#send_newsletter
Admin interface allows you to create a follow-up message received by subscriber no sooner than 1 day after their subscription, so you will most likely have to send it through their API call:
http://dev.getresponse.com/api-doc/#send_newsletter