/home/techb158/ileadtechnology.com/SSM/vendor/swiftmailer/swiftmailer/lib/classes/Swift
NameSizeModeActions
AddressEncoder/-0755rm
ByteStream/-0755rm
CharacterReader/-0755rm
CharacterReaderFactory/-0755rm
CharacterStream/-0755rm
Encoder/-0755rm
Events/-0755rm
KeyCache/-0755rm
Mailer/-0755rm
Mime/-0755rm
Plugins/-0755rm
Signers/-0755rm
StreamFilters/-0755rm
Transport/-0755rm
AddressEncoder.php5960644editdlrm
AddressEncoderException.php7210644editdlrm
Attachment.php14480644editdlrm
CharacterReader.php17400644editdlrm
CharacterReaderFactory.php5420644editdlrm
CharacterStream.php22170644editdlrm
ConfigurableSpool.php13620644editdlrm
DependencyContainer.php99940644editdlrm
DependencyException.php5880644editdlrm
EmbeddedFile.php14060644editdlrm
Encoder.php7340644editdlrm
FailoverTransport.php8640644editdlrm
FileSpool.php56190644editdlrm
FileStream.php4880644editdlrm
Filterable.php6790644editdlrm
IdGenerator.php4330644editdlrm
Image.php10520644editdlrm
InputByteStream.php19630644editdlrm
IoException.php6050644editdlrm
KeyCache.php28910644editdlrm
LoadBalancedTransport.php8770644editdlrm
Mailer.php25660644editdlrm
MemorySpool.php27600644editdlrm
Message.php71590644editdlrm
MimePart.php11670644editdlrm
NullTransport.php6720644editdlrm
OutputByteStream.php11280644editdlrm
Preferences.php22250644editdlrm
ReplacementFilterFactory.php5490644editdlrm
RfcComplianceException.php5540644editdlrm
SendmailTransport.php8850644editdlrm
Signer.php3650644editdlrm
SmtpTransport.php15070644editdlrm
Spool.php12400644editdlrm
SpoolTransport.php7790644editdlrm
StreamFilter.php7200644editdlrm
SwiftException.php6010644editdlrm
Transport.php21340644editdlrm
TransportException.php6700644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer.php (2566B)
transport = $transport; } /** * Create a new class instance of one of the message services. * * For example 'mimepart' would create a 'message.mimepart' instance * * @param string $service * * @return object */ public function createMessage($service = 'message') { return Swift_DependencyContainer::getInstance() ->lookup('message.'.$service); } /** * Send the given Message like it would be sent in a mail client. * * All recipients (with the exception of Bcc) will be able to see the other * recipients this message was sent to. * * Recipient/sender data will be retrieved from the Message object. * * The return value is the number of recipients who were accepted for * delivery. * * @param array $failedRecipients An array of failures by-reference * * @return int The number of successful recipients. Can be 0 which indicates failure */ public function send(Swift_Mime_SimpleMessage $message, &$failedRecipients = null) { $failedRecipients = (array) $failedRecipients; // FIXME: to be removed in 7.0 (as transport must now start itself on send) if (!$this->transport->isStarted()) { $this->transport->start(); } $sent = 0; try { $sent = $this->transport->send($message, $failedRecipients); } catch (Swift_RfcComplianceException $e) { foreach ($message->getTo() as $address => $name) { $failedRecipients[] = $address; } } return $sent; } /** * Register a plugin using a known unique key (e.g. myPlugin). */ public function registerPlugin(Swift_Events_EventListener $plugin) { $this->transport->registerPlugin($plugin); } /** * The Transport used to send messages. * * @return Swift_Transport */ public function getTransport() { return $this->transport; } }