added SMTP_FROM to the SendGrid configuration

Guiorgy
2025-02-04 10:21:57 +04:00
parent b303f008c8
commit d4fbf5081d

@@ -120,7 +120,8 @@ Due to Microsoft requiring OAuth2 support this will not work anymore. See [the t
### Sendgrid ### Sendgrid
Replace `<full-api-key>` with the generated API-Key from SendGrid which starts with `SG.`<br> Replace `<full-api-key>` with the generated API-Key from SendGrid which starts with `SG.`<br>
Also make sure the API-Key has full `Mail Send` rights, else you can't login with this key.<br> Also make sure the API-Key has full `Mail Send` rights, else you can't login with this key.
StartTLS: StartTLS:
```ini ```ini
SMTP_HOST=smtp.sendgrid.net SMTP_HOST=smtp.sendgrid.net
@@ -129,6 +130,7 @@ StartTLS:
SMTP_USERNAME=apikey SMTP_USERNAME=apikey
SMTP_PASSWORD=<full-api-key> SMTP_PASSWORD=<full-api-key>
SMTP_AUTH_MECHANISM="Login" SMTP_AUTH_MECHANISM="Login"
SMTP_FROM=<mail-address>
``` ```
Full SSL: Full SSL:
@@ -139,6 +141,7 @@ Full SSL:
SMTP_USERNAME=apikey SMTP_USERNAME=apikey
SMTP_PASSWORD=<full-api-key> SMTP_PASSWORD=<full-api-key>
SMTP_AUTH_MECHANISM="Login" SMTP_AUTH_MECHANISM="Login"
SMTP_FROM=<mail-address>
``` ```
## Passwords with special characters ## Passwords with special characters