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 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应
  • ¥15 matlab基于pde算法图像修复,为什么只能对示例图像有效
  • ¥100 连续两帧图像高速减法
  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?