filippo-toso/eml-builder

A simple class to build EML files

v1.0.0 2024-08-25 10:31 UTC

This package is auto-updated.

Last update: 2024-10-25 10:54:15 UTC


README

A simple class to build EML files.

Installing

Use Composer to install it:

composer require filippo-toso/eml-builder

How does it work?

It's really easy:

use FilippoToso\EmlBuilder\Address;
use FilippoToso\EmlBuilder\EmlBuilder;

$builder = (new EmlBuilder())
    ->from(Address::make('info@example.com', 'Acme Inc'))
    ->to(Address::make('info@example.com'))
    ->cc([Address::make('info@example.com'), Address::make('info@example.com', 'Acme Inc')])
    ->subject('Hello World!')
    ->text('This is the textual part of the email!')
    ->html('<h1>This is the HTML part of the email!</h1>');

// Get the EML content
$content = $builder->get();

// Save the EML content
$builder->save('test-email.eml');

That's it!