如何使用PHP

时间:2018-05-14 10:40:55

标签: javascript php function email

我必须在我的邮件功能中添加超链接。但是当发送了一封电子邮件时,我没有得到标签,但完整的代码如“点击这里”我只想要一封电子邮件,而不是在我的邮件中看到标签。这是我正在使用的代码:

function stuurMail($email, $verificationCode)
{
    $tekst = "";
    $receiver= $email;
    $topic = "Bevestiging aanmelding EenmaalAndermaal";
    $tekst .= "Bedankt voor uw aanmelding!\nOm gebruik te kunnen maken van het platform, dient u via het onderstaande link uw account te activeren!\n";
    $tekst .= "<a href=\"test_functie.php\">http://test.nl/test.php?check=$verificationCode</a>";
    $header = "From: blabla@gmail.com";
    mail($receiver, $topic, $tekst, $header);
}

1 个答案:

答案 0 :(得分:3)

您应该将电子邮件设为HTML电子邮件,而不是纯文本电子邮件。以这种方式更新标题:

$header = "From: blabla@gmail.com\r\nContent-type: text/html; charset=iso-8859-1";