|
2 | 2 |
|
3 | 3 | [](https://travis-ci.org/eoghanobrien/php-simple-mail) [](https://packagist.org/packages/eoghanobrien/php-simple-mail) [](https://scrutinizer-ci.com/g/eoghanobrien/php-simple-mail/) [](https://scrutinizer-ci.com/g/eoghanobrien/php-simple-mail/) [](https://packagist.org/packages/eoghanobrien/php-simple-mail) [](https://packagist.org/packages/eoghanobrien/php-simple-mail)
|
4 | 4 |
|
| 5 | +## Introduction |
| 6 | + |
| 7 | +Simple Mail Class provides a simple, chainable wrapper for creating and sending emails using the PHP `mail()` function. There are better options out there for sending SMTP email, which are more secure and more reliable than the `mail()` function. However, sometimes you just need to send a simple email. That's what we cover. |
| 8 | + |
5 | 9 | ## Installation via Composer
|
6 | 10 |
|
7 |
| - { |
8 |
| - "require": { |
9 |
| - "eoghanobrien/php-simple-mail": "~1.*" |
10 |
| - } |
11 |
| - } |
| 11 | +``` |
| 12 | +$ composer require eoghanobrien/php-simple-mail |
| 13 | +``` |
12 | 14 |
|
13 | 15 | ## Usage
|
14 | 16 |
|
15 |
| -Simple Mail Class provides a simple, chainable PHP class for sending basic emails |
| 17 | +### Instantiating the class. |
| 18 | + |
| 19 | +You have two options, you can 'new up' the class in the traditional way: |
| 20 | + |
| 21 | +```php |
| 22 | +$mailer = new SimpleMail(); |
| 23 | +``` |
| 24 | +or instantiate it using the named static constructor `make()` |
| 25 | +```php |
| 26 | +$mailer = SimpleMail::make(); |
| 27 | +``` |
| 28 | +The static constructor can be useful when you want to continue chaining methods after instantiating. |
| 29 | +```php |
| 30 | +SimpleMail::make() |
| 31 | +->setTo($email, $name) |
| 32 | +->setFrom($fromEmail, $fromName) |
| 33 | +->setSubject($subject) |
| 34 | +->setMessage($message) |
| 35 | +->send(); |
| 36 | +``` |
| 37 | + |
| 38 | + |
| 39 | + |
| 40 | +### `To` header |
| 41 | + |
| 42 | +The `To` header can be called multiple time, in order to pass more than one `To` address, simply call the `setTo` method as many times as needed. It takes two string parameters. The first parameter is for the email address, the second is for the name. |
| 43 | + |
| 44 | +```php |
| 45 | +SimpleMail::make() |
| 46 | + ->setTo($email1, $name1) |
| 47 | + ->setTo($email2, $name2); |
| 48 | +``` |
| 49 | + |
| 50 | + |
| 51 | +### `From` header |
| 52 | + |
| 53 | +You can carbon copy one or more addresses using the `setBcc` method. It takes two string parameters. The first parameter is for the email address, the second is for the name. |
| 54 | + |
| 55 | +```php |
| 56 | +SimpleMail::make() |
| 57 | + ->setFrom(' [email protected]', 'John Smith'); |
| 58 | +``` |
| 59 | + |
| 60 | + |
| 61 | + |
| 62 | +### `Cc` header |
| 63 | + |
| 64 | +You can carbon copy one or more addresses using the `setCc` method. It takes an array of `$name => $email` pairs. Alternatively, you can pass a simple numerically keyed array an the value is assumed to be the email. |
| 65 | + |
| 66 | +```php |
| 67 | +SimpleMail::make() |
| 68 | + ->setCc(['John Smith', ' [email protected]'); |
| 69 | +``` |
| 70 | + |
| 71 | + |
| 72 | +### `Bcc` header |
| 73 | + |
| 74 | +You can blind carbon copy one or more addresses using the `setBcc` method. It takes an array of `$name => $email` pairs. Alternatively, you can pass a simple numerically keyed array an the value is assumed to be the email. |
| 75 | + |
| 76 | +```php |
| 77 | +SimpleMail::make() |
| 78 | + ->setBcc(['John Smith', ' [email protected]'); |
| 79 | +``` |
| 80 | + |
| 81 | +### `Subject` header |
| 82 | + |
| 83 | +You can set the subject using `setSubject` method. It takes a string as the only parameter. |
| 84 | + |
| 85 | +```php |
| 86 | +SimpleMail::make() |
| 87 | + ->setSubject("Important information about your account"); |
| 88 | +``` |
| 89 | + |
| 90 | +### `Message` header |
| 91 | + |
| 92 | +You can set the message using `setMessage` method. It takes a string as the only parameter. |
| 93 | + |
| 94 | +```php |
| 95 | +SimpleMail::make() |
| 96 | + ->setMessage("My important message!"); |
| 97 | +``` |
| 98 | + |
| 99 | +### `HTML` emails |
| 100 | + |
| 101 | +If you want to include HTML in your email. Simply call the `setHtml()` method. It takes no parameters. |
| 102 | + |
| 103 | +```php |
| 104 | +SimpleMail::make() |
| 105 | + ->setMessage("<strong>My important message!</strong>") |
| 106 | + ->setHtml(); |
| 107 | +``` |
| 108 | + |
| 109 | +### `send` emails |
16 | 110 |
|
17 |
| - $mail = new SimpleMail(); |
18 |
| - $mail->setTo('[email protected]', 'Your Email') |
19 |
| - ->setSubject('Test Message') |
20 |
| - ->setFrom('[email protected]', 'Domain.com') |
21 |
| - ->addMailHeader('Reply-To', '[email protected]', 'Domain.com') |
22 |
| - ->addMailHeader('Cc', '[email protected]', 'Bill Gates') |
23 |
| - ->addMailHeader('Bcc', '[email protected]', 'Steve Jobs') |
24 |
| - ->addGenericHeader('X-Mailer', 'PHP/' . phpversion()) |
25 |
| - ->addGenericHeader('Content-Type', 'text/html; charset="utf-8"') |
26 |
| - ->setMessage('<strong>This is a test message.</strong>') |
27 |
| - ->setWrap(100); |
28 |
| - $send = $mail->send(); |
29 |
| - echo ($send) ? 'Email sent successfully' : 'Could not send email'; |
| 111 | +Once you've set all your headers. Use the `send()` method to finally send it on it's way. |
30 | 112 |
|
| 113 | +```php |
| 114 | +SimpleMail::make() |
| 115 | + ->setMessage("<strong>My important message!</strong>") |
| 116 | + ->send(); |
| 117 | +``` |
| 118 | + |
| 119 | +### Full example of sending an email |
| 120 | + |
| 121 | +```php |
| 122 | +$send = SimpleMail::make() |
| 123 | + ->setTo($email, $name) |
| 124 | + ->setFrom($fromEmail, $fromName) |
| 125 | + ->setSubject($subject) |
| 126 | + ->setMessage($message) |
| 127 | + ->setReplyTo($replyEmail, $replyName) |
| 128 | + ->setCc(['Bill Gates' => ' [email protected]']) |
| 129 | + ->setBcc(['Steve Jobs' => ' [email protected]']) |
| 130 | + ->setHtml() |
| 131 | + ->setWrap(100) |
| 132 | + ->send(); |
| 133 | + |
| 134 | +echo ($send) ? 'Email sent successfully' : 'Could not send email'; |
| 135 | +``` |
31 | 136 |
|
32 |
| -####Sending an Attachment |
| 137 | +### Example of sending an email with attachments |
33 | 138 |
|
34 | 139 | If you are sending an attachment there is no need to add any addGenericHeader()'s. To properly send the attachments the necessary headers will be set for you. You can also chain as many attachments as you want (see example).
|
35 | 140 |
|
36 |
| - $mail = new SimpleMail(); |
37 |
| - $mail->setTo('[email protected]', 'Your Email') |
38 |
| - ->setSubject('Test Message') |
39 |
| - ->setFrom('[email protected]', 'Domain.com') |
40 |
| - ->addMailHeader('Reply-To', '[email protected]', 'Domain.com') |
41 |
| - ->addMailHeader('Cc', '[email protected]', 'Bill Gates') |
42 |
| - ->addMailHeader('Bcc', '[email protected]', 'Steve Jobs') |
43 |
| - ->addAttachment('example/pbXBsZSwgY2hh.jpg', 'lolcat_finally_arrived.jpg') |
44 |
| - ->addAttachment('example/lolcat_what.jpg') |
45 |
| - ->setMessage('<strong>This is a test message.</strong>') |
46 |
| - ->setWrap(100); |
47 |
| - $send = $mail->send(); |
48 |
| - echo ($send) ? 'Email sent successfully' : 'Could not send email'; |
| 141 | +```php |
| 142 | +$send = SimpleMail::make() |
| 143 | + ->setTo($email, $name) |
| 144 | + ->setFrom($fromEmail, $fromName) |
| 145 | + ->setSubject($subject) |
| 146 | + ->setMessage($message) |
| 147 | + ->setReplyTo($replyEmail, $replyName) |
| 148 | + ->setCc(['Bill Gates' => ' [email protected]']) |
| 149 | + ->setBcc(['Steve Jobs' => ' [email protected]']) |
| 150 | + ->setHtml() |
| 151 | + ->setWrap(100) |
| 152 | + ->addAttachment('example/pbXBsZSwgY2hh.jpg', 'lolcat_finally_arrived.jpg') |
| 153 | + ->addAttachment('example/lolcat_what.jpg') |
| 154 | + ->send(); |
| 155 | + |
| 156 | +echo ($send) ? 'Email sent successfully' : 'Could not send email'; |
| 157 | +``` |
49 | 158 |
|
50 | 159 | ## License
|
51 |
| -php-simple-mail is free and unencumbered public domain software. For more information, see http://opensource.org/licenses/MIT or the accompanying MIT file. |
| 160 | +php-simple-mail is free and unencumbered public domain software. For more information, see [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) or the accompanying MIT file. |
52 | 161 |
|
0 commit comments