如何在访问页面时发送电子邮件通知?
如果访问某个页面,是否可以发送电子邮件通知?
(触发一封电子邮件,说该页面已被查看)
Is there a way to send an email notification if a certain page is visited?
(Triggers an email saying the page was viewed)
即.用户来到这个页面:thank-you.php
页面加载后,电子邮件会自动发送给网站管理员.
然后,在发送此电子邮件触发器后,用户会立即被重定向到另一个页面.
Ie. User comes to this page: thank-you.php
And email is automatically sent to the admin of the website upon page load.
Then the user gets redirected to another page right after this email trigger as been sent.
编辑---我需要检查用户是否来自特定的域名或 URL.
这是为了避免漏洞利用或其他杂项.提交技巧.
有什么建议吗?
推荐答案
尝试:
<?php
// The message
$message = "Line 1
Line 2
Line 3";
// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70);
// Send
mail('admin@example.com', 'My Subject', $message);
// Redirect
header('Location: anotherpage.php');
?>
相关文章