Update 'README.md'

This commit is contained in:
nikkel 2020-03-20 01:44:05 +07:00
parent fc83bb3d80
commit a87e69d3b0

View File

@ -1,3 +1,57 @@
# postman-php
# Postman for PHP
A PHP library for the Postman email platform
This library helps you send e-mails through [Postman](https://postman.prmail.vn) in PHP 5.4 and above.
## Installation
Install the library using [Composer](https://getcomposer.org/):
```
$ composer require postman/postman
```
## 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.
```php
// Create a new Postman client using the server key you generate in the web interface
$client = new Postman\Client('https://postman.yourdomain.com', 'your-api-key');
// Create a new message
$message = new Postman\SendMessage($client);
// 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.postman.io');
// Set the subject
$message->subject('Hi there!');
// Set the content for the e-mail
$message->plainBody('Hello world!');
$message->htmlBody('<p>Hello world!</p>');
// 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 = $message->send();
// 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(); // Returns the message ID
$message->token(); // Returns the message's token
}
```