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
- Swiftmailer usage example
- How to use SMTP with Swiftmailer?
- How to log emails sent with Swiftmailer?
- How to use Swiftmailer transport?
- How to send emails without encryption in SwiftMailer?
- How to set the 'from' address in Swiftmailer?
- How to send emails in UTF8 using Swiftmailer?
- How to use TLS 1.2 with Swiftmailer?
- How to use Swiftmailer with Symfony?
- How to use Swiftmailer to send RFC 2822 compliant emails?
See more codes...