1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-18 20:59:39 +02:00

Email sender

This commit is contained in:
Josh Pigford 2024-10-09 08:37:45 -05:00
parent 0d7164af9b
commit 0afab5296c
2 changed files with 2 additions and 1 deletions

View file

@ -15,7 +15,7 @@ SMTP_USERNAME=
SMTP_PASSWORD=
SMTP_TLS_ENABLED=true
# Email Configuration
# Address that emails are sent from
EMAIL_SENDER=
# Database Configuration

View file

@ -1,3 +1,4 @@
class ApplicationMailer < ActionMailer::Base
default from: ENV["EMAIL_SENDER"] if ENV["EMAIL_SENDER"].present?
layout "mailer"
end