Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Mail.php « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b907f4c63db08163174482de2772c3431d8f041f (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
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 * @category Piwik
 * @package Piwik
 */
use Piwik\Core\Config;
use Piwik\Core\Piwik;

/**
 * Class for sending mails, for more information see:
 *
 * @package Piwik
 * @see Zend_Mail, libs/Zend/Mail.php
 * @link http://framework.zend.com/manual/en/zend.mail.html
 */
class Piwik_Mail extends Zend_Mail
{
    /**
     * Default charset utf-8
     *
     * @param string $charset  charset, defaults to utf-8
     */
    public function __construct($charset = 'utf-8')
    {
        parent::__construct($charset);
        $this->initSmtpTransport();
    }

    /**
     * Sets the sender to use
     *
     * @param string $email
     * @param null|string $name
     * @return Zend_Mail
     */
    public function setFrom($email, $name = null)
    {
        $hostname = Config::getInstance()->mail['defaultHostnameIfEmpty'];
        $piwikHost = Piwik_Url::getCurrentHost($hostname);

        // If known Piwik URL, use it instead of "localhost"
        $piwikUrl = Piwik::getPiwikUrl();
        $url = parse_url($piwikUrl);
        if (isset($url['host'])
            && $url['host'] != 'localhost'
            && $url['host'] != '127.0.0.1'
        ) {
            $piwikHost = $url['host'];
        }
        $email = str_replace('{DOMAIN}', $piwikHost, $email);
        return parent::setFrom($email, $name);
    }

    /**
     * @return void
     */
    private function initSmtpTransport()
    {
        $mailConfig = Config::getInstance()->mail;
        if (empty($mailConfig['host'])
            || $mailConfig['transport'] != 'smtp'
        ) {
            return;
        }
        $smtpConfig = array();
        if (!empty($mailConfig['type']))
            $smtpConfig['auth'] = strtolower($mailConfig['type']);
        if (!empty($mailConfig['username']))
            $smtpConfig['username'] = $mailConfig['username'];
        if (!empty($mailConfig['password']))
            $smtpConfig['password'] = $mailConfig['password'];
        if (!empty($mailConfig['encryption']))
            $smtpConfig['ssl'] = $mailConfig['encryption'];

        $tr = new Zend_Mail_Transport_Smtp($mailConfig['host'], $smtpConfig);
        Piwik_Mail::setDefaultTransport($tr);
        ini_set("smtp_port", $mailConfig['port']);
    }
}