5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ActionMailerでメールを送る際、必ずBCCを送る

Posted at

config/environment/production.rbに以下を追加すると、ActionMailerで送るメールは必ず指定したメールアドレスにBCCが送られるようになる。
※ あらかじめActionMailerの設定をしてあることが前提。

/config/environment/production.rb
config.action_mailer.default_options = {
  bcc: 'hoge@fuga.com'
}

【関連】

RailsのActionMailerでメールを送信する(Gmail経由)
http://qiita.com/ytr_i/items/0907ee3312ed9d79c9e8

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?