filippo-toso/eml-builder

一个用于构建 EML 文件的简单类

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

This package is auto-updated.

Last update: 2024-09-25 10:41:18 UTC


README

一个用于构建 EML 文件的简单类。

安装

使用 Composer 安装

composer require filippo-toso/eml-builder

它是如何工作的?

非常简单

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');

就是这样!