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 TLS 1.2 with Swiftmailer?
- How to use SMTP with Swiftmailer?
- How to use Swiftmailer with Symfony?
- How to set timeout with Swiftmailer?
- How to log emails sent with Swiftmailer?
- How to use Swiftmailer to send RFC 2822 compliant emails?
- How to enable TLS with Swiftmailer?
- How to embed an image in Swiftmailer?
- How to download Swiftmailer without Composer?
- How to configure Swiftmailer for SMTP without authentication?
See more codes...