-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ff71e9
commit 224c812
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,6 +54,24 @@ MAILER_DSN='smtp://user@password@localhost?SMTPDebug=3&Timeout=1000' | |
MAILER_DSN='smtps://[email protected]:[email protected]:587' | ||
``` | ||
|
||
## Advanced | ||
|
||
Sometimes it's not convinient to configure all options by the only one `MAILER_DSN` variable. For example, if you want to configure [DKIM](https://en.wikipedia.org/wiki/DomainKeys_Identified_Mail), you will end with very long unreadable DSN string. In this cases you can use one of `MAILER_*` variables: | ||
|
||
- `MAILER_DEBUG` | ||
- `MAILER_DEBUG_OUTPUT` | ||
- `MAILER_FROM` | ||
- `MAILER_FROM_NAME` | ||
- `MAILER_SENDER` | ||
- `MAILER_DKIM_PRIVATE` | ||
- `MAILER_DKIM_PASSPHRASE` | ||
- `MAILER_DKIM_SELECTOR` | ||
- `MAILER_DKIM_IDENTITY` | ||
- `MAILER_DKIM_DOMAIN` | ||
- and etc. | ||
|
||
See source code for all available vars. | ||
|
||
## License | ||
|
||
Copyright (c) Voronkovich Oleg. Distributed under the [MIT](LICENSE). |