4

text/html 形式の収入メールのコンテンツ タイプを、クライアント/ユーザー マシンのデフォルトのフォント スタイルとサイズに設定することを想定しています。User Pear Mail コンテンツ タイプを追加するにはどうすればよいですか。私が送信したすべての例は、MIME 添付ファイルを含む content-type の追加のみを示しています。

また、受信メールをユーザーのメールクライアントのフォントスタイルとサイズにデフォルト設定する別の方法がある場合は、知りたいです。

追加したい

$headers  = "MIME-Version: 1.0\r\n"; 
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; 

現在のメールコード

$from = "sys@test.com";
$to = $SendTo;
$subject = "Contact : " . $uxGlobalLocation;
$body = $Bodycopy;
$host = "mail.set.co";
$username = "donotreply@set.co";
$password = "empty00";
$headers = array ('From' => $from,
'To' => $to,
'Subject' => $subject);
$smtp = Mail::factory('smtp',
array ('host' => $host,
'auth' => true,
'username' => $username,
'password' => $password));
$mail = $smtp->send($to, $headers, $body);
if (PEAR::isError($mail)) {
echo("<p>" . $mail->getMessage() . "</p>");
} else {
header ('Location: /');
exit();
}

編集可能な答え

$headers = array ('From' => $from,
'To' => $to,
'Subject' => $subject,
'Content-Type' => 'text/html; charset=iso-8859-1',
'MIME-Version' => '1.0');
4

1 に答える 1

9

これは機能します。$headers 配列の最後の項目が \r\n\r\n でなければならないことを理解するのに永遠にかかりました

<?php
require_once "Mail.php";
$from = "Web Master <master@example.com>";
$replyto = "Education Dept. <education@example.com>";
$to = "<mytest@example.com>";
$subject = "Test email using PHP SMTP";
$body = "<p>Test HTML</p><p>This is a test email message</p>";

$host = "smtp.example.com";
$username = "master@example.com";
$password = "****************";

$headers = array ('From' => $from,
  'To' => $to,
  'Subject' => $subject,
  'Reply-To' => $replyto,
  'MIME-Version' => "1.0",
  'Content-type' => "text/html; charset=iso-8859-1\r\n\r\n");

$smtp = Mail::factory('smtp',
  array ('host' => $host,
    'auth' => true,
    'username' => $username,
    'password' => $password));

$mail = $smtp->send($to, $headers, $body);

if (PEAR::isError($mail)) {
  echo("<p>" . $mail->getMessage() . "</p>");
} else {
  echo("<p>Message successfully sent!</p>");
}
?>
于 2012-12-19T21:57:27.333 に答える