0

メールにPHPmail()関数を使用しているので、新しいものを追加したいのですが、どうしたらいいのかわかりません。

私が作成した基本的なPHPメールクラスは次のとおりです。

<?php

class Send_Mail {

    private $to = array();
    private $subject = null;
    private $from = null;
    private $replyTo = null;
    private $type = self::TEXT;

    const HTML = 0;
    const TEXT = 1;

    public function __construct() {
    }

    public function setTo($array) {
        $this->to = $array;
    }

    public function setType($type) {
        if($type == self::HTML || $type == self::TEXT) {
            $this->type = $type;
        }
    }

    public function setSubject($subject) {
        $this->subject= $subject;
    }

    public function setMessage($message) {
        $this->message = $message;
    }

    public function setFrom($from) {
        $this->from = $from;
    }

    public function send() {

        if  (   $this->to == array()    || 
                $this->from == null     ||
                $this->message == null
            ) {
                trigger_error("The email can't be sent ! One of the mandatory fields at least isn't set !");
                return false;
        }
        else {

            $this->to       = implode(',', $this->to);

            $this->subject = ($this->subject == null) ? "" : $this->subject;

            $headers    = array();
            $headers[]  = "MIME-Version: 1.0" . "\r\n";

            if($this->type == self::HTML) {
                $headers[]  = "Content-type: text/html; charset=UTF-8" . "\r\n";
            } else {
                $headers[]  = "Content-type: text/plain; charset=UTF-8" . "\r\n";
            }

            $headers[]  = "To: " . $this->to . "\r\n";
            $headers[]  = "From: " . $this->from . "\r\n";


            $headers[]  = "Reply-To: " . $this->from . "\r\n";

            return mail($this->to, $this->subject, $this->message, implode('', $headers));
        }
    }

}

*/
?>

そのため、基本的に添付ファイルを送信できません。複数のBCCと複数のCCサポートも追加したい思います

PHPのドキュメントに記載されているように、行は70文字を超えてはならないという事実に加えて。ワードラップを使用するとHTMLタグを壊すことができるということを知って、どうすればそれに対処できますか?:(

4

1 に答える 1

0

添付ファイル付きの電子メールを提供することは、多数のパーツ本体を実装する必要があるため、これほど簡単なことではありません。

この問題にはライブラリを使用することをお勧めします。例えば:

http://framework.zend.com/manual/1.12/en/zend.mail.attachments.html

また

https://pear.php.net/manual/de/package.mail.mail-mime.example.php

そうでなければ、あなたは自分でそれを書かなければなりません

添付ファイルについては、これを見てください

http://www.shayanderson.com/php/simple-php-mail-class-with-attachment.htm

CCやBCCなどの追加のメールヘッダーについては、こちらをお読みください

http://www.htmlite.com/php029.php

于 2013-01-10T13:12:24.127 に答える