使用smtp或者socket来实现这个功能应该是很简单的

解决方案 »

  1.   

    http://www.phpe.net/class/30.shtml
    看看这个,或者对你有帮助
      

  2.   

    如果你服务器配置了sendmail支持php的mail(),那么可以这样发送:<?php
    /* recipients */
    $to  = "[email protected]" . ", " ; // note the comma
    $to .= "[email protected]";/* subject */
    $subject = "Birthday Reminders for August";/* message */
    $message = '
    <html>
    <head>
    <title>Birthday Reminders for August</title>
    </head>
    <body>
    <p>Here are the birthdays upcoming in August!</p>
    <table>
    <tr>
      <th>Person</th><th>Day</th><th>Month</th><th>Year</th>
    </tr>
    <tr>
      <td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
    </tr>
    <tr>
      <td>Sally</td><td>17th</td><td>August</td><td>1973</td>
    </tr>
    </table>
    </body>
    </html>
    ';/* To send HTML mail, you can set the Content-type header. */
    $headers  = "MIME-Version: 1.0\r\n";
    $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";/* additional headers */
    $headers .= "To: Mary <[email protected]>, Kelly <[email protected]>\r\n";
    $headers .= "From: Birthday Reminder <[email protected]>\r\n";
    $headers .= "Cc: [email protected]\r\n";
    $headers .= "Bcc: [email protected]\r\n";/* and now mail it */
    mail($to, $subject, $message, $headers);
    ?>如果你的机器不支持mail(),而支持socket库,那么到phpclass.org下载smtp类发送邮件吧。
      

  3.   

    已经配置了sendmail,并在php.ini中加入了:
    ; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
    sendmail_path = "/usr/sbin/sendmail -t -i"php代码参照楼上的,mail()返回为成功,可就是没收到邮件