/var/www/flurhymez/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins
NameSizeModeActions
Decorator/-0755rm
Loggers/-0755rm
Pop/-0755rm
Reporters/-0755rm
AntiFloodPlugin.php30180644editdlrm
BandwidthMonitorPlugin.php33660644editdlrm
DecoratorPlugin.php70420644editdlrm
ImpersonatePlugin.php15930644editdlrm
Logger.php6140644editdlrm
LoggerPlugin.php34360644editdlrm
MessageLogger.php13360644editdlrm
PopBeforeSmtpPlugin.php61910644editdlrm
RedirectingPlugin.php49180644editdlrm
Reporter.php7850644editdlrm
ReporterPlugin.php18220644editdlrm
Sleeper.php4310644editdlrm
ThrottlerPlugin.php46670644editdlrm
Timer.php4260644editdlrm
Edit: /var/www/flurhymez/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ReporterPlugin.php (1822B)
reporter = $reporter; } /** * Not used. */ public function beforeSendPerformed(Swift_Events_SendEvent $evt) { } /** * Invoked immediately after the Message is sent. */ public function sendPerformed(Swift_Events_SendEvent $evt) { $message = $evt->getMessage(); $failures = array_flip($evt->getFailedRecipients()); foreach ((array) $message->getTo() as $address => $null) { $this->reporter->notify($message, $address, (\array_key_exists($address, $failures) ? Swift_Plugins_Reporter::RESULT_FAIL : Swift_Plugins_Reporter::RESULT_PASS)); } foreach ((array) $message->getCc() as $address => $null) { $this->reporter->notify($message, $address, (\array_key_exists($address, $failures) ? Swift_Plugins_Reporter::RESULT_FAIL : Swift_Plugins_Reporter::RESULT_PASS)); } foreach ((array) $message->getBcc() as $address => $null) { $this->reporter->notify($message, $address, (\array_key_exists($address, $failures) ? Swift_Plugins_Reporter::RESULT_FAIL : Swift_Plugins_Reporter::RESULT_PASS)); } } }