Ben konu satırı gibi özel karakter varsa, PHP bir HTML kodlanmış e-posta göndermek çalıştığınızda "Here's the information you requested"
, PHP okumak için kodlar "Here's the information you requested."
Bunu nasıl düzeltebilirim?
İşte kod PHP posta kullanarak benziyor ne ():
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'To: ' . $mod_params['name'] . '<' . $mod_params['email'] . '>' . "\r\n";
$headers .= 'From: <do_not_reply@a4isp.com>' . "\r\n";
$email_to = $mod_params['email'];
$email_sub = "Here's the Information You Requested";
$body = html_entity_decode("<html><body>" . $email_html_body . "</body></html>");
mail($email_to,$email_sub,$body,$headers);
Bu SugarPHPMailer sınıfı aracılığıyla çalışan gibi aynı hatayı veriyor.