Sfoglia il codice sorgente

Use default email sender address from environment var

master
Adrian Short 11 anni fa
parent
commit
76cf9e4b9b
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      app/mailers/user_mailer.rb

+ 1
- 1
app/mailers/user_mailer.rb Vedi File

@@ -1,5 +1,5 @@
class UserMailer < ActionMailer::Base
default from: "from@example.com"
default from: ENV['APOLLO_EMAIL_FROM'] || "from@example.com"

# Subject can be set in your I18n file at config/locales/en.yml
# with the following lookup:


Caricamento…
Annulla
Salva