2010-10-04 107 views
0

當發送我的郵件標題來找我這樣(quigon.myinternetwebhost.com),然後我的郵件的主題如何將此(quigon.myinternetwebhost.com)更改爲我的公司名稱(任何名稱)這是我的代碼更改我的電子郵件標題

<?php 

    include_once ("../admin_config/config.php"); 

    error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE); 

    $getMails = "select * from maling_list"; 
    $result = $db -> query ($getMails) or die ($db->error); 

    $dbfailures = array(); 
    $failures = array(); 
    $success = array(); 


     $subject = filter_input (INPUT_POST, 'subject'); 
     $cat = filter_input (INPUT_POST, 'category'); 
     $mailbody = filter_input (INPUT_POST, 'body'); 

     $mailMessage = "Category : $cat\r\n$mailbody" ; 
     $headers = "From : [email protected]"; 
     $headers .= "From : [email protected]"; 


    while($row = $result -> fetch_array()) { 


     $email = $row['email']; 
     $name = $row['company']; 


    $mailResult = mail($email, $subject, $mailMessage, $headers, '-f [email protected]'); 



     if ($mailResult) { 

      $success[] = $email; 

      }else{ 

       $dbfailures[] = $email; 
       echo "<br />"; 
       $failures[] = $email; 

       } 
      } 

      echo "<font color='#FF0000'><b>These mails didn't get sent:</b></font> ".htmlentities(implode(', ', $failures))."<br />". 
       "<font color='#009900'><b>These mails were successfully sent:</b></font> ".htmlentities(implode(', ', $success)); 



?> 

<br /><br /><br /> 
<input name="Submit" type="submit" value="Back" style="position:absolute; right:200px;" onclick="history.back()" /> 
<br /><br /><br /> 

任何機構請在這裏請幫助我!

回答

1

使用此代碼。這可能會幫助你。

$headers = "MIME-Version: 1.0" . "\r\n"; 
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n"; 
$headers .= "From : [email protected]"; 
$subject = filter_input (INPUT_POST, 'subject'); 

感謝,

漢字