Skip to content

Commit

Permalink
fix: Adjust mail_driver implemented as mail_mailer in v 5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
compgeniuses committed Sep 5, 2024
1 parent 2db98b7 commit 2855f25
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ MIX_ENV = data.get("MIX_ENV", "local")
rdb = agent.redis_connect(use_replica=True)
smtp_settings = agent.get_smarthost_settings(rdb)

MAIL_DRIVER = "SMTP"
MAIL_MAILER = "SMTP"
MAIL_HOST = smtp_settings['host']
MAIL_PORT = smtp_settings['port']
MAIL_USERNAME = smtp_settings['username']
Expand Down Expand Up @@ -76,7 +76,7 @@ app_config = {
"MIX_PUSHER_APP_KEY": MIX_PUSHER_APP_KEY,
"MIX_PUSHER_APP_CLUSTER": MIX_PUSHER_APP_CLUSTER,
"MIX_ENV": MIX_ENV,
"MAIL_DRIVER": MAIL_DRIVER,
"MAIL_MAILER": MAIL_MAILER,
"MAIL_HOST": MAIL_HOST,
"MAIL_PORT": MAIL_PORT,
"MAIL_USERNAME": MAIL_USERNAME,
Expand Down

0 comments on commit 2855f25

Please sign in to comment.