mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
18 lines
458 B
PHP
18 lines
458 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Control\Tests\Email\MailerTest;
|
|
|
|
use SilverStripe\Control\Email\Mailer;
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
/**
|
|
* Mocks the sending of emails without actually sending anything
|
|
*/
|
|
class MockMailer extends Mailer implements TestOnly
|
|
{
|
|
protected function email($to, $subjectEncoded, $fullBody, $headersEncoded, $bounceAddress)
|
|
{
|
|
return array($to, $subjectEncoded, $fullBody, $headersEncoded, $bounceAddress);
|
|
}
|
|
}
|