-2
送我有PHP代碼如何在PHP中添加HTML以HTML
但洽洽發送的文本模式
,我想編輯的消息與HTML模式下工作
這是我的contact.php的代碼
<?php
$webmaster_mail = '[email protected]';
$redirect_page = 'http://www.xxxx.com/';
$message_subject = 'msg';
$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
$in_Body ='';
foreach($_POST as $in_k=>$in_v) {
$in_Body .="$in_k = $in_v\n\n";
}
$in_Body .= 'IP: ' . $_SERVER['REMOTE_ADDR'] . "\n\n";
#$in_Body .= 'Host Name: ' . gethostbyaddr($_SERVER['REMOTE_ADDR']) . "\n\n"; //old get host name
$in_Body .= 'Host Name: ' . $hostname . "\n\n";
$in_Body .= 'Browser: ' . $_SERVER['HTTP_USER_AGENT'] . "\n\n";
$in_Body .= 'Time: ' . $gmdate . "\n\n";
$in_Body .= 'Os: ' . getOS($_SERVER['HTTP_USER_AGENT']) . "\n\n";
#$in_Body .= 'country: ' . getCountry() . "\n\n";
$in_Body .= 'country: ' . $ip2c->get_country_name() . "\n\n";
mail(trim($webmaster_mail), "$message_subject ", "$in_Body","From: " . trim($webmaster_mail));
header("Location: $redirect_page");
//close();
?>
在電子郵件中添加表格和徽標時,請參閱msg –
您想將其添加到您的問題嗎?以及你遇到的具體問題的細節? – andrewsi
不要建立你自己的啞劇電子郵件。使用[PHPMailer](http://phpmailer.worxware.com)或[Swiftmailer](http://swiftmailer.org)。它們使用起來更容易,並使得發送HTML郵件變得微不足道。 –