Skip to content

Build SendGrid X-SMTPAPI headers in PHP.

License

Notifications You must be signed in to change notification settings

bienhoangthy/smtpapi-php

 
 

Repository files navigation

BuildStatus Latest Stable Version

This module helps build SendGrid's SMTP API headers.

Learn more about the SMTP API at SendGrid's documentation.

Announcements

All updates to this module is documented in our CHANGELOG.

Installation

Prerequisites

  • PHP version 5.6 or 7.0
  • The SendGrid service, starting at the free level

Install with Composer

The following recommended installation requires http://getcomposer.org.

Add the following to your composer.json file.

{
    "minimum-stability" : "dev",
    "require": {
        "sendgrid/smtpapi": "~0.5"
    }
}

Then at the top of your script require the autoloader:

require 'vendor/autoload.php';

Alternative: Install from zip

If you are not using Composer, simply download and install the latest packaged release of the library as a zip.

Then require the library from package:

require('path/to/smtpapi-php/smtpapi-php.php');

Previous versions of the library can be found in the version index.

Quick Start

$header = new Smtpapi\Header();
$header->addTo('[email protected]');
$header->addTo('[email protected]');
print $header->jsonString();

Usage

Roadmap

If you are intersted in the future direction of this project, please take a look at our milestones. We would love to hear your feedback.

How to Contribute

We encourage contribution to our projects, please see our CONTRIBUTING guide for details.

Quick links:

About

smtpapi-php is guided and supported by the SendGrid Developer Experience Team.

smtpapi-php is maintained and funded by SendGrid, Inc. The names and logos for smtpapi-php are trademarks of SendGrid, Inc.

![SendGrid Logo] (https://uiux.s3.amazonaws.com/2016-logos/email-logo%402x.png)

About

Build SendGrid X-SMTPAPI headers in PHP.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 93.4%
  • Shell 6.6%