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: d9702c0f735b1a94b299d2086e13834a98d9c4da (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
<?php
/**
 * Piwik - Open source web analytics
 * 
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
 * @version $Id: $
 * 
 * @package Piwik
 */

require_once "Zend/Mail.php";

/**
 * Class for sending mails, for more information see: 
 * http://framework.zend.com/manual/en/zend.mail.html 
 *
 * @package Piwik
 */
class Piwik_Mail extends Zend_Mail
{
	/**
	 * Public constructor, default charset utf-8
	 *
	 * @param string $charset
	 */
	public function __construct($charset = 'utf-8')
	{
		parent::__construct($charset);
	}
}