symfony/mime
's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.Name | Version | Size | License | Type | Vulnerabilities |
---|---|---|---|---|---|
symfony/polyfill-intl-idn | v1.28.0 | 59.31 kB | MIT | prod | |
symfony/polyfill-mbstring | v1.28.0 | 29.41 kB | MIT | prod |
Symfony/Mime is a composer package that offers the ability to manipulate MIME messages. With Symfony/Mime, you can create and manipulate internet messages that conform to the Multipurpose Internet Mail Extensions (MIME) standard. This primarily involves the creation, encoding, and decoding of multipart messages, emails, and attachments.
Utilizing Symfony/Mime in your PHP environment is quite straightforward. Below is an example of how you could use it to create an email with an HTML body:
use Symfony\Component\Mime\Email;
$email = (new Email())
->from('hello@example.com')
->to('you@example.com')
->subject('Time for Symfony Mailer!')
->text('Sending emails is fun again!')
->html('<p>See Twig integration for better HTML integration!</p>');
After creating an email, you can send it with the Mailer component:
use Symfony\Component\Mailer\Mailer;
use Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport;
$transport = new EsmtpTransport('localhost');
$mailer = new Mailer($transport);
$mailer->send($email);
Remember to install the MIME component via composer using the command composer require symfony/mime
before attempting to use it.
The complete and detailed documentation for the Symfony/Mime package is available on the Symfony official website: Symfony Mime Documentation. This includes further usage examples, detailed function descriptions, and additional resources for contributing to the Symfony project.