summaryrefslogtreecommitdiff
path: root/Postman/Phpmailer/PostsmtpMailer.php
blob: c7587bb559c2b384aa5b83be6aeeef96f462d08d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

if ( ! class_exists( 'PHPMailer', false ) ) {
    require_once ABSPATH . WPINC . '/class-phpmailer.php';
}

add_action('plugins_loaded', function() {
    global $phpmailer;

    $phpmailer = new PostsmtpMailer(true);
});

class PostsmtpMailer extends PHPMailer {

    private $mail_args = array();

    private $options;

    private $error;

    private $transcript = '';

    public function __construct($exceptions = null)
    {
        parent::__construct($exceptions);

        $this->set_vars();
        $this->hooks();

    }

    public function set_vars() {
        $this->options = PostmanOptions::getInstance();
        $this->Debugoutput = function($str, $level) {
            $this->transcript .= $str;
        };
    }

    public function hooks() {
        add_filter( 'wp_mail', array( $this, 'get_mail_args' ) );
        if ( $this->options->getTransportType() == 'smtp' ) {
            add_action( 'phpmailer_init', array( $this, 'phpmailer_smtp_init' ), 999 );
        }
    }

    public function get_mail_args( $atts ) {
        $this->mail_args = array();
        $this->mail_args[] = $atts['to'];
        $this->mail_args[] = $atts['subject'];
        $this->mail_args[] = $atts['message'];
        $this->mail_args[] = $atts['headers'];
        $this->mail_args[] = $atts['attachments'];

        return $atts;
    }

    /**
     * @param PHPMailer $mail
     */
    public function phpmailer_smtp_init($mail) {
        $mail->SMTPDebug = 3;
        $mail->isSMTP();
        $mail->Host = $this->options->getHostname();

        if ( $this->options->getAuthenticationType() !== 'none' ) {
            $mail->SMTPAuth   = true;
            $mail->Username   = $this->options->getUsername();
            $mail->Password   = $this->options->getPassword();
        }

        if ( $this->options->getEncryptionType() !== 'none' ) {
            $mail->SMTPSecure = $this->options->getEncryptionType();
        }

        $mail->Port = $this->options->getPort();

        if ( $this->options->isPluginSenderEmailEnforced() ) {
            $mail->setFrom( $this->options->getMessageSenderEmail() , $this->options->getMessageSenderName () );
        }
    }

    public function send()
    {
        require_once dirname(__DIR__) . '/PostmanWpMail.php';

        // create a PostmanWpMail instance
        $postmanWpMail = new PostmanWpMail();
        $postmanWpMail->init();

        list($to, $subject, $body, $headers, $attachments) = array_pad( $this->mail_args, 5, null );

        // build the message
        $postmanMessage = $postmanWpMail->processWpMailCall( $to, $subject, $body, $headers, $attachments );

        // build the email log entry
        $log = new PostmanEmailLog();
        $log->originalTo = $to;
        $log->originalSubject = $subject;
        $log->originalMessage = $body;
        $log->originalHeaders = $headers;

        // get the transport and create the transportConfig and engine
        $transport = PostmanTransportRegistry::getInstance()->getActiveTransport();

        add_filter( 'postman_wp_mail_result', [ $this, 'postman_wp_mail_result' ] );

        try {

            if ( $send_email = apply_filters( 'post_smtp_do_send_email', true ) ) {
                $result = $this->options->getTransportType() !== 'smtp' ?
                    $postmanWpMail->send( $to, $subject, $body, $headers, $attachments ) :
                    $this->sendSmtp();
            }


            do_action( 'post_smtp_on_success', $log, $postmanMessage, $this->transcript, $transport );

            return $result;

        } catch (phpmailerException $exc) {

            $this->error = $exc;

            $this->mailHeader = '';

            $this->setError($exc->getMessage());
            if ($this->exceptions) {
                throw $exc;
            }
            return false;
        }

    }

    public function sendSmtp() {
        if (!$this->preSend()) {
            return false;
        }
        return $this->postSend();
    }


    public  function postman_wp_mail_result() {
        $result = [
            'time' => '',
            'exception' => $this->error,
            'transcript' => $this->transcript,
        ];
        return $result;
    }
}