为什么我的php页面没有发送邮件

时间:2015-01-14 02:38:28

标签: php html email

当我重新加载页面时,会显示一个链接发送邮件但是当我点击此链接时,它没有重定向发送邮件,我的代码有什么问题?

<?php
echo '<a href="//mailto:me@example.com?Subject=We are going to ibiza" target="_top">Emil now</a>';
?>

请帮助,谢谢!

3 个答案:

答案 0 :(得分:1)

您在 mailto 之前添加//这是您编码的主要问题!&gt; 我已经改进了您的代码,希望这有帮助!

<?php
echo '<a href="mailto:me@example.com?Subject=We+are+going+to+ ibiza" target="_top">Emil now</a>';
?>

答案 1 :(得分:0)

在“mailto”

之前删除两个版本
<?php
echo '<a href="mailto:me@example.com?Subject=We are going to ibiza" target="_top">Emil now</a>';
?>

答案 2 :(得分:0)

看看这里: http://de.selfhtml.org/html/verweise/email.htm

我认为你只需删除链接中的两个//