Sendgrid-php
用于电子邮件的开源 PHP 库
免费的 PHP API,允许创建电子邮件消息并将其发送给单个或多个收件人、交易模板、查看电子邮件统计信息等等。
Sendgrid-php 入门
强烈建议使用 Composer 安装 Sendgrid-php 库。您可以下载 composer,然后可以使用以下命令轻松安装库。为了顺利工作,您需要创建一个 SendGrid 帐户并创建一个 API Key
通过 Composer 安装 Sendgrid-php API
composer require sendgrid/sendgrid
通过 PHP API 向单个或多个用户发送电子邮件
sendgrid-php 库允许 PHP 程序员以编程方式从他们自己的 PHP 应用程序发送电子邮件消息。该库包含几个用于发送和接收电子邮件的有用功能,例如向单个收件人发送电子邮件、向多个用户发送电子邮件、向多个用户发送多个电子邮件、向电子邮件添加附件、使用 Twilio Email 发送电子邮件、还有很多。
通过 PHP 向电子邮件添加附件
发送电子邮件附件通常用于与组织内的多个用户共享数据。开源电子邮件库 sendgrid-php 使支持开发人员能够在自己的 PHP 应用程序中发送带有多个附件的电子邮件。您可以使用 addAttachments 方法轻松附加多个文件。该库支持将来自 Box 和 Amazon S3 存储的文件附加到您的电子邮件中。附加 PDF 文档、文字处理文件、照片、电子表格文档和其他任何内容都非常容易。
电子邮件统计支持
免费的电子邮件库 sendgrid-php 包含对使用 PHP 在您自己的应用程序中访问和查看电子邮件统计信息的完整支持。该库提供了几种检查和查看全局以及使用统计信息的方法。您可以检索给定日期范围内的所有全球电子邮件统计信息,检索子用户的统计信息,检索所有子用户的每月电子邮件统计信息,查看多达 10 个不同子用户的统计信息,检索子用户的监控设置用户等等。
创建和使用事务性电子邮件模板
The sendgrid-php library has provided support for sending email messages with a transactional template. You can easily create your own email templates using HTML, CSS, and some content. It is always a good practice to test your templates before sending them to customers. For an easy start, you can use a free template from the internet and modify it according to your own needs. It is recommended to use table-based HTML templates as many popular email apps only read table-based HTML. You can easily modify and duplicate your templates.
这 sendgrid-php library has provided support for sending email messages with a transactional template. You can easily create your own email templates using HTML, CSS, and some content. It is always a good practice to test your templates before sending them to customers. For an easy start, you can use a free template from the internet and modify it according to your own needs. It is recommended to use table-based HTML templates as many popular email apps only read table-based HTML. You can easily modify and duplicate your templates.