在标题自字段中使用Php变量

时间:2019-05-20 16:50:36

标签: php

我正在尝试设置PHP Mailer。 由于某些未知原因,我无法在“发件人”字段上使用变量

$headers = "MIME-Version: 1.0\r\n";
$headers .= "From: Blaine<{$from_email}>\r\n";
$headers .= "Reply-To: " . $from_email . "" . "\r\n";
$headers .= "Content-Type: multipart/mixed; 
boundary = $boundary\r\n\r\n";

我想代替Blaine使用以前设置的变量,但是当我这样做时 我正在尝试设置一个PHP Mailer。 由于某些未知原因,我无法在“发件人”字段上使用变量

$headers .= "From: .$var <{$from_email}>\r\n";

我不知道发件人姓名

1 个答案:

答案 0 :(得分:0)

$headers .= "From: $senderName <$senderEmail>\r\n";