自动发送电子邮件
如何将已经准备好的电子邮件自动发送到在 html 创建的文本字段中输入的电子邮件地址?我应该收到一封确认邮件,表明用户已打开通过该邮件发送的链接。 我想用 php 来做。
How can I send an already prepared email automatically to an email adress entered into a text field created from html? And I should get back a confirmation mail that the user has opened the link sent through that mail.
I want to do it with php.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您对小型邮件项目的要求不是很具体。因此,我们能为您提供的就是查看 html 表单。您可以使用 phps POST 方法处理它们,然后通过 phps mail()< 发送邮件/a> 函数。处理后,您可以轻松地同时向您发送另一封邮件,以便在发生问题时您会收到通知!
祝你好运!
Your requirements for your little mail project are not very specific. So all we can offer you is to have a look at html forms. You can process them with phps POST-method and that way send a mail through phps mail() function. After processing you can easily send another mail at the same time to you so you get notified when something happens!
Good luck!