为什么我的 php 页面不发送邮件
Why my php page is not sending mail
当我重新加载页面时显示 link 发送邮件 但是当我单击此 link 时,它不会重定向以发送邮件,这是怎么回事使用我的代码?
<?php
echo '<a href="//mailto:me@example.com?Subject=We are going to ibiza" target="_top">Emil now</a>';
?>
请帮忙,谢谢!
您在 mailto 之前添加 // 这是您编码的主要问题!>我已经改进了下面的代码,希望这对您有所帮助!
<?php
echo '<a href="mailto:me@example.com?Subject=We+are+going+to+ ibiza" target="_top">Emil now</a>';
?>
删除"mailto"
前的两个斜杠
<?php
echo '<a href="mailto:me@example.com?Subject=We are going to ibiza" target="_top">Emil now</a>';
?>
看看这里:
http://de.selfhtml.org/html/verweise/email.htm
我认为您只需要删除 link
中的两个 //
当我重新加载页面时显示 link 发送邮件 但是当我单击此 link 时,它不会重定向以发送邮件,这是怎么回事使用我的代码?
<?php
echo '<a href="//mailto:me@example.com?Subject=We are going to ibiza" target="_top">Emil now</a>';
?>
请帮忙,谢谢!
您在 mailto 之前添加 // 这是您编码的主要问题!>我已经改进了下面的代码,希望这对您有所帮助!
<?php
echo '<a href="mailto:me@example.com?Subject=We+are+going+to+ ibiza" target="_top">Emil now</a>';
?>
删除"mailto"
前的两个斜杠<?php
echo '<a href="mailto:me@example.com?Subject=We are going to ibiza" target="_top">Emil now</a>';
?>
看看这里: http://de.selfhtml.org/html/verweise/email.htm
我认为您只需要删除 link
中的两个 //