You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 30, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ return [
96
96
];
97
97
```
98
98
99
-
Please set your required env vars for all services specified in the config files. `'default' => env('DEFAULT_SERVICE', 'mailgun')` set this options for your default service which will be used when no service is is explictilry specified when using mailmerge api.
99
+
Please set your required env vars for all services specified in the config files. `'default' => env('DEFAULT_SERVICE', 'mailgun')` set this options for your default service which will be used when no service is explicitly specified when using mailmerge api.
100
100
101
101
# Usage
102
102
This package registered all api endpoint you need, run `php artisan route:list` to see all available endpoints.
You can spcify service in the api headers which you want to use for sending message
260
+
You can specify service in the api headers which you want to use for sending message
261
261
For example:
262
262
263
263
```php
@@ -280,7 +280,7 @@ $payload = [
280
280
```
281
281
<dt>attachment</dt>
282
282
<dd>
283
-
Wtih MailMerge you can send one or more attachments with batch message.
283
+
With MailMerge you can send one or more attachments with batch message.
284
284
285
285
```php
286
286
$payload = [
@@ -296,7 +296,7 @@ $payload = [
296
296
297
297
* Batch Mail Template
298
298
299
-
MailMerge uses its own email placeholdrer template for recipients custom attributes (variables) because of different integration of MSP so you don't have to worry about syntax different services.
299
+
MailMerge uses its own email placeholder template for recipients custom attributes (variables) because of different integration of MSP so you don't have to worry about syntax different services.
Sending a batch message can be a time taking task on user end, it may take time for you to arrange all the recipents list that you want to send as batch message and what if your batch message failed so instead of doing all the havy work again and again with MailMerge its now possible to resend your batch message using different service (mailgun, pepipost, sendgrid). MailMerge saves all of your sent batch messages so you can retry that batch message in future in case of some system failure or if there are so many failed or bounced emails, when you retry or resend batch message it handle the logic of sending that batch message only for failed recipients from last batch so you can retry that batch message as many times as you want until all the emails from that batch are sent successfully.
325
+
Sending a batch message can be a time taking task on user end, it may take time for you to arrange all the recipents list that you want to send as batch message and what if your batch message failed so instead of doing all the heavy work again and again with MailMerge its now possible to resend your batch message using different service (mailgun, pepipost, sendgrid). MailMerge saves all of your sent batch messages so you can retry that batch message in future in case of some system failure or if there are so many failed or bounced emails, when you retry or resend batch message it handle the logic of sending that batch message only for failed recipients from last batch so you can retry that batch message as many times as you want until all the emails from that batch are sent successfully.
326
326
327
327
MailMerge provide a default view for handling your batch messages.
0 commit comments