用php傳送郵件, 可以用phpmailer。phpmailer是乙個用於傳送電子郵件的php函式包
那麼phpmailer怎麼用呢?
然後進入 test看到testemail.php 檔案 這裡面是乙個例子
**類似
<?php
/*** ****** example script using phpmailer with exceptions enabled
* @package phpmailer
* @version $id$
*/require '../class.phpmailer.php';
try catch (phpmailerexception $e)
?>
上面** ,有注釋說明的比較重要 需要認真填寫一下
注意:1.如果報錯 :could not execute: /var/qmail/bin/sendmail
那麼你需要把 配置檔案中的 $mail->issendmail(); 注釋掉
2.如果你用的是空間
報錯:smtp error: could not connect to smtp host
那麼你需要 修改
class.smtp.php
$this->smtp_conn = @fsockopen
改為$this->smtp_conn = @pfsockopen
因為很多空間把fsockopen禁用了!
按照以上步驟 , 您的郵件應該已經傳送成功了
其實 phpmailer 包我們真正用到的檔案只有 class.phpmailer.php和class.smtp.php
php郵件傳送
今天要用到php的郵件傳送,便用phpmailer弄了個 類檔案 emaillclass.php class phpmailer function send addr,fromname,title,content smtp array array ehlo hello lb,220,250 ehlo...
php 郵件傳送
2 修改class.phpmailer.php 增加變數 fromemail 修改下面內容 成如下內容 if this fromname else result this headerline from this fromemail.fromname result this headerline r...
php 傳送郵件
results wpdb query sql 傳送郵件提醒有人申請 smtpserver smtp.qq.com smtp伺服器,如 smtp.qq.com smtpserverport 25 smtp伺服器端口,一般為25 smtpusermail 117 x837 qq.com smtp伺服器的...