2017 © Pedro Peláez
 

library postal

Postal for PHP library.

image

postal/postal

Postal for PHP library.

  • Monday, May 8, 2017
  • by adamcooke
  • Repository
  • 5 Watchers
  • 12 Stars
  • 7,059 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 6 Forks
  • 2 Open issues
  • 2 Versions
  • 30 % Grown

The README.md

Postal for PHP

This library helps you send e-mails through Postal in PHP 7.4 and above., (*1)

Installation

Install the library using Composer:, (*2)

$ composer require postal/postal

Usage

Sending an email is very simple. Just follow the example below. Before you can begin, you'll need to login to our web interface and generate a new API credential., (*3)

// Create a new Postal client using the server key you generate in the web interface
$client = new Postal\Client('https://postal.yourdomain.com', 'your-api-key');

// Create a new message
$message = new Postal\Send\Message();

// Add some recipients
$message->to('john@example.com');
$message->to('mary@example.com');
$message->cc('mike@example.com');
$message->bcc('secret@awesomeapp.com');

// Specify who the message should be from. This must be from a verified domain
// on your mail server.
$message->from('test@test.postal.io');

// Set the subject
$message->subject('Hi there!');

// Set the content for the e-mail
$message->plainBody('Hello world!');
$message->htmlBody('

Hello world!, (*4)

'); // Add any custom headers $message->header('X-PHP-Test', 'value'); // Attach any files $message->attach('textmessage.txt', 'text/plain', 'Hello world!'); // Send the message and get the result $result = $client->send->message($message); // Loop through each of the recipients to get the message ID foreach ($result->recipients() as $email => $message) { $email; // The e-mail address of the recipient $message->id; // The message ID $message->token; // The message's token }

The Versions

08/05 2017

dev-master

9999999-dev https://github.com/atech/postal

Postal for PHP library.

  Sources   Download

MIT

The Requires

 

by Adam Cooke

mail postal

08/05 2017

v1.0

1.0.0.0 https://github.com/atech/postal

Postal for PHP library.

  Sources   Download

MIT

The Requires

 

by Adam Cooke

mail postal