php-swiftmailerHow to check Swiftmailer version?
To check the version of Swiftmailer, you can use the following code:
$swiftmailerVersion = \Swift_DependencyContainer::getInstance()->lookup('transport.version');
echo $swiftmailerVersion;
This will output the version of Swiftmailer, for example: 6.2.3.
The code consists of two parts:
\Swift_DependencyContainer::getInstance()->lookup('transport.version')- This part looks up the version of the transport layer of Swiftmailer.echo $swiftmailerVersion- This part prints out the version of Swiftmailer.
Helpful links
More of Php Swiftmailer
- How to use SMTP with Swiftmailer?
- How to use TLS 1.2 with Swiftmailer?
- How to set timeout with Swiftmailer?
- How to configure Swiftmailer for SMTP without authentication?
- How to use Swiftmailer with SendGrid?
- How to configure Swiftmailer for Postfix?
- How to set the port for Swiftmailer?
- How to send emails without encryption in SwiftMailer?
- How to ignore a certificate when using Swiftmailer?
- How to set the reply to address in Swiftmailer?
See more codes...