ossinkine / swiftmailer-punycode-plugin
Swiftmailer plugin to convert domain in email addresses to punycode
Installs: 1 523
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^7.0
- swiftmailer/swiftmailer: ^6.0
- true/punycode: ^2.0
Requires (Dev)
- phpunit/phpunit: ^6.5
This package is auto-updated.
Last update: 2022-02-01 13:11:57 UTC
README
Swiftmailer plugin to convert domain in email addresses to punycode.
Installation
composer require ossinkine/swiftmailer-punycode-plugin
Usage
Create and register a plugin instance when you setup a Swift_Mailer
instance.
use Ossinkine\Swift\Plugin\PunycodePlugin; // Create the Mailer using any Transport $mailer = new Swift_Mailer( new Swift_SmtpTransport('smtp.example.org', 25) ); // Register the plugin $mailer->registerPlugin(new PunycodePlugin());
Now you can send an email to an address with Unicode-encoded domain.
// Create a message with Unicode-encoded receiver address $message = (new Swift_Message()) ->setTo(['receiver@bücher.tld']) ; // Send the message $mailer->send($message);
Usage with Symfony
Just register a service with a swiftmailer.default.plugin
tag in your services.yml
.
Ossinkine\Swift\Plugin\PunycodePlugin: tags: [swiftmailer.default.plugin]
License
Swiftmailer Punycode Plugin is licensed under the MIT license.