2011-06-17 22:21:31 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Emulates the email sending process for testing purposes
|
|
|
|
*
|
2017-06-10 21:33:55 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
2017-06-10 22:10:52 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2011-06-17 22:21:31 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2011-06-17 22:21:31 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2017-06-10 22:10:52 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2017-06-10 21:33:55 +00:00
|
|
|
* @link https://cakephp.org CakePHP(tm) Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Network.Email
|
2011-06-17 22:21:31 +00:00
|
|
|
* @since CakePHP(tm) v 2.0.0
|
2017-06-10 22:23:14 +00:00
|
|
|
* @license https://opensource.org/licenses/mit-license.php MIT License
|
2011-06-17 22:21:31 +00:00
|
|
|
*/
|
2016-06-03 02:04:50 +00:00
|
|
|
App::uses('AbstractTransport', 'Network/Email');
|
2011-06-17 22:21:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Debug Transport class, useful for emulate the email sending process and inspect the resulted
|
|
|
|
* email message before actually send it during development
|
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Network.Email
|
2011-06-17 22:21:31 +00:00
|
|
|
*/
|
|
|
|
class DebugTransport 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-06-17 22:21:31 +00:00
|
|
|
*/
|
|
|
|
public function send(CakeEmail $email) {
|
2011-10-22 13:23:50 +00:00
|
|
|
$headers = $email->getHeaders(array('from', 'sender', 'replyTo', 'readReceipt', 'returnPath', 'to', 'cc', 'subject'));
|
2011-06-17 22:21:31 +00:00
|
|
|
$headers = $this->_headersToString($headers);
|
2011-08-29 09:21:46 +00:00
|
|
|
$message = implode("\r\n", (array)$email->message());
|
2011-08-26 00:31:18 +00:00
|
|
|
return array('headers' => $headers, 'message' => $message);
|
2011-06-17 22:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|