PHP kullanarak posta konu ikili kelime ile posta göndermek nasıl

3 Cevap php

I am going to send mail through a PHP website. The client may customize the mail subject and I will get the post data in UTF-8. But when I send out an HTML e-mail using the PHP mail(), I found that the subject does not show properly but the body does.

Nasıl PHP posta işlevi bir Çince kelime gönderebilirim?

Teşekkürler.

3 Cevap

Sen encoded-wveyad (RFC 2047 bakınız) belirtilen şekline göre konuyu kodlamak gerekir:

encoded-wveyad = "=?" charset "?" encoding "?" encoded-text "?="

Sen kullanımı Ya

Bu posta başlığında ASCII olmayan göndermek için oldukça yer bulunuyor. PHPMailer göz atın

http://sourceforge.net/projects/phpmailer/

Sizin için işe yaramazsa, nasıl yapıldığını görmek için () encoderHeader bakmak.

Ben kullanmak PEAR Mail_Mime ve mb_encode_mimeheader konuyu kodlamak. Burada çalışan bir fonksiyon örneği:

<?php
function mail_html($from, $to, $subject, $message_html, $headers = array()) {
  require_once "Mail.php";
  require_once 'Mail/mime.php';
  $smtp = Mail::factory('smtp',
    array (
        'host' => 'smtp.example.com',
        'auth' => true,
        'username' => 'user@example.com',
        'password' => 'password'));

  if(function_exists('mb_internal_encoding'))
    mb_internal_encoding('UTF-8');
  if(function_exists('mb_encode_mimeheader'))
    $subject = mb_encode_mimeheader($subject,"UTF-8", "B", "\n");

  $h = array();
  $h['From']         = "$from";
  $h['Bounce']       = "$from";
  $h['Reply-To']     = "$from";
  $h['Return-Path']  = "$from";
  $headers['Subject']      = $subject;
  $headers = array_merge($h, $headers);

  $mime = new Mail_mime();  
  $mime->setHTMLBody($message_html);
  $body = $mime->get(array('html_charset' => 'UTF-8', 'html_encoding' => '8bit', 'head_charset'=> 'UTF-8'));
  $hdrs = $mime->headers($headers);  
  $mail = $smtp->send($to, $hdrs, $body);

  if (PEAR::isError($mail))
    echo 'error', 'Unable to send email';
  else
    echo "Sent email to $to from $from";
}
?>