Download the PHP package fterenzani/swiftmail without Composer
On this page you can find all versions of the php package fterenzani/swiftmail. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download fterenzani/swiftmail
More information about fterenzani/swiftmail
Files in fterenzani/swiftmail
Download fterenzani/swiftmail
More information about fterenzani/swiftmail
Files in fterenzani/swiftmail
Vendor fterenzani
Package swiftmail
Short Description An implementation of the Facade pattern for Swift Mailer 5 and later
License LGPL
Homepage https://github.com/fterenzani/SwiftMail
Package swiftmail
Short Description An implementation of the Facade pattern for Swift Mailer 5 and later
License LGPL
Homepage https://github.com/fterenzani/SwiftMail
Please rate this library. Is it a good library?
Informations about the package swiftmail
SwiftMail is an implementation of the Facade pattern for Swift Mailer 4.x: a powerful component based mailing library for PHP by Chris Corbyn.
A simple e-mail can be sent in this way:
SwiftMail::newInstance($subject, $message)
->setTo($to)
->setFrom($from)
->send()
;
By default SwiftMail try to send emails using the Swift_MailTransport (that use the mail function of PHP). The default transport can be changed using the static method SwiftMail::setDefaultTransport.
$smtp = Swift_SmtpTransport::newInstance($host, $port)
->setUsername($user)
->setPassword($pass)
;
SwiftMail::setDefaultTransport($smtp);
A list of Tranports is available in the Swift Mailer documentation.
All versions of swiftmail with dependencies
PHP Build Version
Package Version
The package fterenzani/swiftmail contains the following files
Loading the files please wait ....