Last active
June 27, 2020 04:25
-
-
Save sugamasao/bf7d49a5d46da059237e2eeb9e74d80f to your computer and use it in GitHub Desktop.
action mailerで場合によってtextだけにしたい&フォーマットによってテンプレートパスを変えたい場合
This file contains hidden or 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
mail(param) do |format| | |
format.html { render 'user_mailer/welcome' } unless @text_dake_okuritai | |
format.text { render 'user_mailer/text/welcome' } # path/to/name | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment