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
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.
93
98
94
99
### Retry sending failed e-mails
95
100
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.
97
102
98
103
```bash
99
-
$ php artisan email:failed
104
+
$ php artisan email:retry
105
+
# or...
106
+
$ php artisan email:retry 1
100
107
```
101
108
102
109
### Encryption
103
110
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.
105
112
106
113
### Testing Address
107
114
@@ -111,5 +118,5 @@ During the creation of an e-mail, the recipient will be replaced by the test e-m
0 commit comments