HTML 丰富的电子邮件邀请,带有 RSVP 按钮到数据库?
我想做的是: 通过 HTML eblast 发送活动邀请。我希望用户能够直接从电子邮件中回复(单击“是”、“否”、“也许”),并通过这样做,将该信息发送到数据库中,供我的客户查看回复。
他们特别不希望回复以电子邮件形式出现,他们希望将其作为列表查看,并且不想使用像 evite 这样的东西。我到处都看过但不知道如何做到这一点。有什么想法吗?提前致谢!
What I am trying to do is this:
Send an invitation for an event via HTML eblast. I would like the users to be able to RSVP straight from the email (click Yes, No, Maybe) and by doing so, will send that info into a database for my client to view the responses.
They specifically do not want responses coming in as emails, they want to view it as a list, and does not want to use something like evite. I've looked everywhere but don't see how to do this. Any thoughts? Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您需要为每个收件人动态生成一封电子邮件。
您可以更改每个收件人的是/否/可能 URL,以便将他们的信息发送到网页(php/aspx/其他),然后将他们的选择添加到您的数据库中。
因此,您可以循环遍历收件人列表,生成带有变量的电子邮件,将“是/否/可能”链接的 URL 更改为
http://yoursite.com/rsvp.php?user=
。然后只需设置 rsvp.php 页面即可提取通过链接传递的 GET 变量并将它们添加到数据库中。
I believe you would need to dynamically generate an email message for each recipient.
You would alter the Yes/No/Maybe URLs for each recipient so it sends their information to a web page (php/aspx/whatever) that then adds their selection to your database.
So you would loop through your list of recipients, generate the email with a variable altering the url of your Yes/No/Maybe links to something like
http://yoursite.com/rsvp.php?user=<TheUsersName>&selection=<YesNoOrMaybe>
.Then just have that
rsvp.php
page set up to pull the GET variables you passed with the link and add them to your database.