pear 独自のメール クラス ライブラリを使用して電子メールを送信します。 pear install コマンドを使用して、対応するライブラリをインストールできます。
- $body = "クリックしてパスワードを再生成";
-
- sendMail_smtp("xxxxxxxx @ qq.com",'test',$body);
-
- function sendMail_smtp($smtpemailto,$mailsubject,$mailbody){
- //error_reporting(7);
-
- require_once 'Mail.php';
- require_once 'Mail / mime.php';
-
- $from = 'admin@xxx.com';
- $to = $smtpemailto;
- $password = 'xxxxxx';
-
- $mail_config=array(
- "host"=>"smtp . ym.163.com",
- "port"=>25,
- "auth"=>true,
- "username"=>$from,
- "password"=>$password,
- "from" = >$from,
- );
-
- $hdrs = array(
- 'From'=>$from,
- 'To' => $to, //受信アドレス
- 'Subject'=>$mailsubject
- ) ;
-
- $mime = new Mail_mime();
- //$mime->setTXTBody($text);
- //添付ファイルを追加
- //$mime->addHTMLImage('php.gif','image /gif ','12345',true);
- $mime->_build_params['html_charset'] = "utf-8";//エンコード形式を設定します
- $mime->_build_params['head_charset'] = "utf - 8";//エンコード形式を設定します
- $mime->setHTMLBody($mailbody);
- $body = $mime->get();
- $hdrs = $mime->headers($hdrs);
-
- $mail = Mail::factory('smtp',$mail_config);
- $succ = $mail->send($to,$hdrs,$body);
-
- if (PEAR::isError($succ) )
- {
- //echo 'メールの送信に失敗しました: ' . $succ->getMessage();
- $err = 'メールの送信に失敗しました: ' . $succ->getMessage();
- $content = $to " t".date('Y-m-d H:i:s')."t ".$err." rn" ;
- }
- else
- {
- //$content = $to."t".date('Y-m-d H :i:s')."t メールが正常に送信されました rn" ;
- return true;
-
- }
-
- }
コードをコピー
|