0
對於電子郵件驗證,我爲每個用戶創建一個散列,然後向用戶發送驗證電子郵件。郵件正文如下。創建可點擊的驗證鏈接PHP郵件
$message_body = '
Hello '.$first_name.',
Thank you for signing up!
Please click this link to activate your account:
http://www.alphaktu.co.in/verify.php?email='.$email.'&hash='.$hash ;
但我想將驗證鏈接轉換爲可點擊的鏈接。
如果您使用html MIME類型發送郵件,那麼您可以在您的身體中添加純html將轉換爲html。像 Verify email –
發送電子郵件爲html,並且包括link (也可以在末尾寫一行,點擊/複製粘貼鏈接到url) – LogicBlower
我很肯定你已經知道[HTML鏈接](https:/ /www.w3schools.com/html/html_links.asp)。那麼真正的問題是什麼? –