- /*他の人の作品の成功を尊重し、この著作権情報を保管してください。ありがとうございます!
- 作者: Xiaoluzhu 3.3
- Yangfan が何かを修正しました: コメント付きのコードで指摘されていますが、このコードは qq~
- */
- set_time_limit(120);
- class smtp_mail
- {
- var $host に問題なく送信できるようになりました。 ; //Host
- var $port; //ポートは通常 25
- var $user; //認証パスワード
- var $debug = false;サーバー ?
- var $conn;
- var $result_str; //結果
- var $in; // 送信元メールボックス
- var $to; //トピック
- var $body; //コンテンツ
- function smtp_mail($host,$port,$user,$pass,$debug=false)
- {
- $this->host = $host;
- $this->port = $port;
- $this->user = Base64_encode($user);
- $this->pass = Base64_encode($pass);
- $this->debug = $debug;
- $this->ソケット=socket_create (AF_INET, SOCK_STREAM, SOL_TCP); //具体的な使用法についてはマニュアルを参照してください
- if($this->socket)
- {
- $this->result_str = "SOCKET の作成:".socket_strerror(socket_last_error( ));
- $this->debug_show($this->result_str);
- }
- else
- {
- exit("初期化に失敗しました。ネットワーク接続とパラメータを確認してください");
- }
- $this-> conn =socket_connect($this->socket,$this->host,$this->port);
- if($this->conn)
- {
- $this->result_str = "SOCKET 接続の作成:" .socket_strerror(socket_last_error());
- $this->debug_show($this->result_str);
- }
- else
- {
- exit("初期化に失敗しました。ネットワーク接続とパラメータを確認してください");
- }
- $this->result_str = "サーバー応答: ".socket_read ($this->socket, 1024)."";
- $this->debug_show ( $this->result_str);
-
- }
- function debug_show($str)
- {
- if($this->debug)
- {
- echo $str."
rn";
- }
- }
- function send($from,$to,$subject,$body)
- {
- if($from == "" || $to == "")
- {
- exit("メールアドレスを入力してください");
- }
- if($subject == "") $sebject = "タイトルなし";
- if($body == "") $body = "コンテンツなし";
- $this->from = $from;
- $this ->to = $to;
- $this->gt;subject = $subject;
- $this->gt;body = $body;
-
- //Yangfan がコードの一部を変更しました
- $All = "From:< ;".$ this->from.">rn";
- $All .= "To:<".$this->to.">rn";
- $All .= "件名:" .$this- >subject."rnrn";
- $All .= $this->body;
- /*
- $All の内容を処理すると、MIME メールを送信できます
- ただし、たくさんのプログラム
- */
-
- //以下はサーバーとのセッションです
- $this->in = "EHLO HELOrn";
- $this->docommand();
-
- $this->in = "認証ログインrn";
- $this->docommand();
-
- $this->in = $this->user."rn";
- $this->docommand();
-
- $this- >in = $this- >pass."rn";
- $this->docommand();
-
- // $this->in = "MAIL FROM:".$this->from." rn";
- $this->in = "MAIL FROM:<".$this->from.">rn"; // ヤンファンが修正しました
- $this->docommand();
-
- // $this->in = "RCPT TO:".$this->to."rn";
- $this->in = "RCPT TO:to."> rn"; //帆の修正
- $this->docommand();
-
- $this->in = "DATArn";
- $this->docommand();
-
- $this->in = $ All."rn.rn" ;
- $this->docommand();
-
- $this->in = "QUITrn";
- $this->docommand();
-
- //終了、接続を閉じる
-
- }
- function docommand()
- {
- socket_write ($this->socket, $this->in, strlen ($this->in));
- $this->debug_show("クライアント コマンド: ".$this->in);
- $this->result_str = "サーバー応答: ".socket_read ($this->socket, 1024)." ";
- $this-> ;debug_show($this->result_str);
- }
- }
- ?>
-
-
コードをコピー
php code
- //テストページ
- include "smtp_mail.php";
- //このクラスを使用するときは、独自のメールボックスに変更するだけです
- $smtp =new smtp_mail ("smtp.qq.com","25","yourmail@qq.com","あなたのパスワード",true);
- //セッション情報を表示する必要がある場合は、上記を
- / /$smtp に変更してください= new smtp_mail("smtp.qq.com","25","あなたの qq.com アカウント","あなたのパスワード",true);
- $smtp->send("yourmail@qq .com","あなたのメール@qq.com","Hello","テストメール");
- ?>
コードをコピー
|