doufei6456 2015-04-27 11:26
浏览 172
已采纳

Sendmail发送URL

I use php to send an email reseting a password.

<?php session_start(); ?>
<?php
if($_POST['UserEmail'] == '')
 {
  $_SESSION['error']['UserEmail'] = "E-mail is required.";
 }
 else
 {
  //whether the UserEmail format is correct
  if(preg_match("/^([a-zA-Z0-9])+([a-zA-Z0-9._-])*@([a-zA-Z0-9_-])+([a-zA-Z0-9._-]+)+$/", $_POST['UserEmail']))
  {
   //if it has the correct format whether the UserEmail has already exist
   $UserEmail= $_POST['UserEmail'];
   $to = $UserEmail;
   $subject = "Forgotten Password";
   $header = "Change your password using the link below";
   $message = "http://www.yourname.com/confirm.php?UserEmail=$UserEmail&5832572895237532897523875";
   $sentmail = mail($to,$subject,$message,$header);
   }
  }
?>

I want the $message to be a clickable link how do i do this.

This is using WAMPs default mailing system.

cheers

I Have tried adding an anchor tag but that sends the anchor aswell not just the clickable link using $Message="<a href=http://www.yourname.com/confirm.php?UserEmail=James@email.co.uk&5832572895237532897523875>click here</a>" Doesnt work either any suggestions

Fix Found basically it was fine just leaving the link in without any anchor tags.

$message="http://www.sitename.com/this.php?Username=email@email.com&432941482401284" 

will display a clickable link inside your email.

Sorry for that

  • 写回答

2条回答 默认 最新

  • doujiang2020 2015-04-27 11:36
    关注

    use anchor tag to make it clickable and assing it to $message:-

    $message= "<a href='http://www.yourname.com/confirm.php?UserEmail=".$UserEmail."&5832572895237532897523875'>Click Here</a>"; 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 2024-五一综合模拟赛
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭