我对 PHP 有非常非常非常基本的了解,我需要以下代码,它会向我发送电子邮件的每个人访问我的页面,以便在电子邮件的消息中还包括使用户登陆该页面的引用 URL。这就对了。我已经尝试了一些我在 stackoverflow 上读到的东西,但我做不到。
谢谢!
<?php
// The message
$message = "Client has viewed the page";
// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70);
// Send
mail('myemail@mydomain.com', 'Client 126 Viewed Biz Landing', $message);
// Redirect
header('Location: http://dazogo.com');
?>