Add dummy driver and other transports supported by Advanced Mailer

This commit is contained in:
Kijin Sung 2016-05-15 19:56:28 +09:00
parent 0b20f3f5c7
commit ebb1b2fd4a
6 changed files with 248 additions and 1 deletions

View file

@ -0,0 +1,34 @@
<?php
namespace Rhymix\Framework\Drivers\Mail;
/**
* The dummy mail driver.
*/
class Dummy extends Base implements \Rhymix\Framework\Drivers\MailInterface
{
/**
* Check if the current mail driver is supported on this server.
*
* This method returns true on success and false on failure.
*
* @return bool
*/
public static function isSupported()
{
return true;
}
/**
* Send a message.
*
* This method returns true on success and false on failure.
*
* @param object $message
* @return bool
*/
public function send(\Rhymix\Framework\Mail $message)
{
return true;
}
}