2015-11-03 45 views

回答

3

,郵件客戶端將不會呈現爲HTML

按照電子郵件RFC,郵件主題不能有內容類型

與RFC http://www.w3.org/Protocols/rfc822/

3.1.2. STRUCTURE OF HEADER FIELDS 

Once a field has been unfolded, it may be viewed as being composed of a field-name followed by a colon (":"), followed by a field-body, and terminated by a carriage-return/line-feed. The field-name must be composed of printable ASCII characters (i.e., characters that have values between 33. and 126., decimal, except colon). The field-body may be composed of any ASCII characters, except CR or LF. (While CR and/or LF may be present in the actual text, they are removed by the action of unfolding the field.) 
Certain field-bodies of headers may be interpreted according to an internal syntax that some systems may wish to parse. These fields are called "structured fields". Examples include fields containing dates and addresses. Other fields, such as "Subject" and "Comments", are regarded simply as strings of text. 

Note: 

Any field which has a field-body that is defined as other than simply <text> is to be treated as a structured field. 
Field-names, unstructured field bodies and structured field bodies each are scanned by their own, independent "lexical" analyzers. 

3.1.3. UNSTRUCTURED FIELD BODIES 

For some fields, such as "Subject" and "Comments", no structuring is assumed, and they are treated simply as <text>s, as in the message body. Rules of folding apply to these fields, so that such field bodies which occupy several lines must therefore have the second and successive lines indented by at least one LWSP-char. 
+0

一些電子郵件應用呈現HTML,有些不是。 – fico7489

+1

...但沒有電子郵件應用程序在主題行中呈現HTML。 – Synchro

-1
<?php 

    require_once('phpmailer/class.phpmailer.php'); 

    $ = $_POST[]; 
    $ = $_POST[]; 
    $ = $_POST[]; 
    $ = $_POST[]; 

    $mail = new PHPMailer(); 
    $mail->CharSet = "utf-8"; 
    $mail->IsSMTP(); 
    $mail->SMTPAuth = true; 
    $mail->Username = "[email protected]"; 
    $mail->Password = ""; 
    $mail->SMTPSecure = "ssl"; 
    $mail->Host = "smtp.gmail.com"; 
    $mail->Port = "465"; 

    $mail->setFrom('emailaddress','name'); 
    $mail->AddAddress('email address', 'name'); 


    $mail->Subject = 'Example'; 
    $mail->IsHTML(true); 
    ob_start(); 
    ?> 
    <html> 
    <head> 
    <title></title> 

    </head> 
    <body> 

    </body> 
    </html> 
<?php 
    $mail->Body = ob_get_clean(); 
     if($mail->Send()) 
     { 
      header(''); 
     } 
     else 
     { 
     echo "Mail Error - >".$mail->ErrorInfo; 
     } 

?> 
+0

不要發佈不能回答問題的無法解釋的隨機代碼,特別是當它是一個長期過時的示例時。 – Synchro