php-swiftmailerHow to use SMTP with Swiftmailer?
Swiftmailer is a popular library for sending emails using PHP. It supports sending emails using SMTP protocol. To use SMTP with Swiftmailer, you need to create a Swift_SmtpTransport
instance and pass it to Swift_Mailer
instance.
// Create the Transport
$transport = (new Swift_SmtpTransport('smtp.example.org', 25))
->setUsername('your username')
->setPassword('your password')
;
// Create the Mailer using your created Transport
$mailer = new Swift_Mailer($transport);
The code above creates a Swift_SmtpTransport
instance with host smtp.example.org
and port 25
, and sets the username and password for authentication. Then it creates a Swift_Mailer
instance with the created transport.
Parts of the code:
Swift_SmtpTransport
: Class for sending emails using SMTP protocol.smtp.example.org
: Hostname of the SMTP server.25
: Port of the SMTP server.setUsername()
: Method to set the username for authentication.setPassword()
: Method to set the password for authentication.Swift_Mailer
: Class for sending emails.
Helpful links
More of Php Swiftmailer
- How to set timeout with Swiftmailer?
- How to use TLS 1.2 with Swiftmailer?
- How to get the response code when using Swiftmailer?
- How to use Swiftmailer to send RFC 2822 compliant emails?
- How to configure Swiftmailer for Postfix?
- How to send emails in UTF8 using Swiftmailer?
- How to send emails to multiple recipients with Swiftmailer?
- How to set the port for Swiftmailer?
- How to enable TLS with Swiftmailer?
See more codes...