2011-03-01 16:47:05 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Send mail using mail() function
|
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
|
|
* Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Network.Email
|
2011-03-01 16:47:05 +00:00
|
|
|
* @since CakePHP(tm) v 2.0.0
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2011-12-08 15:35:02 +00:00
|
|
|
* Send mail using mail() function
|
2011-03-01 16:47:05 +00:00
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Network.Email
|
2011-03-01 16:47:05 +00:00
|
|
|
*/
|
|
|
|
class MailTransport extends AbstractTransport {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send mail
|
|
|
|
*
|
2011-07-29 03:56:10 +00:00
|
|
|
* @param CakeEmail $email CakeEmail
|
2011-08-26 00:31:18 +00:00
|
|
|
* @return array
|
2011-03-01 16:47:05 +00:00
|
|
|
*/
|
|
|
|
public function send(CakeEmail $email) {
|
2011-04-13 03:34:23 +00:00
|
|
|
$eol = PHP_EOL;
|
|
|
|
if (isset($this->_config['eol'])) {
|
|
|
|
$eol = $this->_config['eol'];
|
2011-03-01 16:47:05 +00:00
|
|
|
}
|
2011-08-26 00:31:18 +00:00
|
|
|
$headers = $email->getHeaders(array('from', 'sender', 'replyTo', 'readReceipt', 'returnPath', 'to', 'cc', 'bcc'));
|
2011-03-01 18:24:38 +00:00
|
|
|
$to = $headers['To'];
|
|
|
|
unset($headers['To']);
|
2011-08-26 00:31:18 +00:00
|
|
|
$headers = $this->_headersToString($headers, $eol);
|
2011-04-04 03:37:29 +00:00
|
|
|
$message = implode($eol, $email->message());
|
2011-04-10 03:08:05 +00:00
|
|
|
if (ini_get('safe_mode') || !isset($this->_config['additionalParameters'])) {
|
2011-08-26 00:31:18 +00:00
|
|
|
if (!@mail($to, $email->subject(), $message, $headers)) {
|
2011-10-15 01:01:17 +00:00
|
|
|
throw new SocketException(__d('cake_dev', 'Could not send email.'));
|
2011-08-26 00:31:18 +00:00
|
|
|
}
|
2011-09-29 12:01:26 +00:00
|
|
|
} elseif (!@mail($to, $email->subject(), $message, $headers, $this->_config['additionalParameters'])) {
|
2011-10-15 01:01:17 +00:00
|
|
|
throw new SocketException(__d('cake_dev', 'Could not send email.'));
|
2011-08-26 00:31:18 +00:00
|
|
|
}
|
|
|
|
return array('headers' => $headers, 'message' => $message);
|
2011-03-01 16:47:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|