xdecock 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)
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; }
}