HTML 丰富的电子邮件邀请,带有 RSVP 按钮到数据库?

发布于 2024-11-15 00:43:47 字数 191 浏览 4 评论 0原文

我想做的是: 通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦中楼上月下 2024-11-22 00:43:47

我相信您需要为每个收件人动态生成一封电子邮件。
您可以更改每个收件人的是/否/可能 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文