Skip to content

Commit 4638cad

Browse files
Update README.md
1 parent 3fcb582 commit 4638cad

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
<p align="center">
22
<img src="/logo.png">
33
</p>
4+
<p align="center">
5+
<a href="https://travis-ci.org/stackkit/laravel-database-emails"><img src="https://travis-ci.org/stackkit/laravel-database-emails.svg?branch=master" alt="Build Status"></a>
6+
<a href="https://packagist.org/packages/buildcode/laravel-database-emails"><img src="https://poser.pugx.org/buildcode/laravel-database-emails/v/stable.svg" alt="Latest Stable Version"></a>
7+
<a href="https://packagist.org/packages/buildcode/laravel-database-emails"><img src="https://poser.pugx.org/buildcode/laravel-database-emails/license.svg" alt="License"></a>
8+
</p>
49

510
## Introduction
611

@@ -89,19 +94,21 @@ $ php artisan email:send
8994

9095
### Failed E-mails
9196

92-
By default, we will attempt to send an e-mail 3 times if it somehow fails.
97+
By default, we will attempt to send an e-mail 3 times if it fails. If it still fails the 3rd time, it will permanently be marked as failed. You can change the number of times an e-mail should be attempted to be sent using the `retry.attempts` configuration.
9398

9499
### Retry sending failed e-mails
95100

96-
If you wish to reset failed e-mails and attempt to send them again, you may call the `email:failed` command. The command will grab any failed e-mail and push it onto the queue.
101+
If you wish to retry sending failed e-mails, you may call the `email:retry` command. The command will grab any failed e-mail and push it onto the queue. You may also provide the id of a specific e-mail.
97102

98103
```bash
99-
$ php artisan email:failed
104+
$ php artisan email:retry
105+
# or...
106+
$ php artisan email:retry 1
100107
```
101108

102109
### Encryption
103110

104-
If you wish to encrypt your e-mails, please enable the `encrypt` option in the configuration file. This is disabled by default. Encryption and decryption will be handled by Laravel's built-in encryption mechanism.
111+
If you wish to encrypt your e-mails, please enable the `encrypt` option in the configuration file. This is disabled by default. Encryption and decryption will be handled by Laravel's built-in encryption mechanism. Please note that encrypting the e-mail body takes a lot of disk space.
105112

106113
### Testing Address
107114

@@ -111,5 +118,5 @@ During the creation of an e-mail, the recipient will be replaced by the test e-m
111118

112119
## Todo
113120

114-
- Add support attachments
121+
- Add support for attachments
115122
- Add support for Mailables

0 commit comments

Comments
 (0)