我在線創建表單,並且需要發送電子郵件以包含文件中的內容。變量中的電子郵件內容
我的頭都設置這樣的
@mail($email_to, $email_subject, $email_message, $headers);
和我的內容在這裏
$email_message = file_get_contents('http://www.link.co.uk/wp-content/themes/themename/email-content.php');
該文件中包含電子郵件模板,我的問題是,模板在原始格式通過電子郵件發送出去。
這裏是我的代碼:
$email_message = file_get_contents('http://www.link.co.uk/wp-content/themes/themename/email-content.php');
// create email headers
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers = 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
這就是我一直在尋找的!非常感謝你。我是PHP新手,像你這樣的人幫助我! –
@BradHouston你非常歡迎Brad,我很高興能有所幫助,*歡呼聲* –
理論上,我每次宣佈其內容時都覆蓋頭部變量?添加連接添加到變量而不是覆蓋!完善! –