Re: Looking towards February - Version 4 (DI-centric design)
Posted: Fri Mar 21, 2008 3:02 am
That would be easy for you to doxdecock wrote:Would it be possible to create a Swift_Transport_Dummy ? to allow application benchmarking without introducing the smtp / mail() / /usr/bin/sendmail delay in the test? (and will be a good "troubleshoot" tool when getting SwiftMailer is too slow topics)
Code: Select all
class DummyTransport implements Swift_Transport {
public function start() { }
public function stop() { }
public function isStarted() { return true; }
public function send(Swift_Mime_Message $msg) { return 0; }
}