まずはサーバーでインストールをします。
# apt-get install -y postfix
よく分からないからとりあえず再スタート(動いているかの確認)
# /etc/init.d/postfix restart
Stopping Postfix Mail Transport Agent: postfix.
Starting Postfix Mail Transport Agent: postfix.
次にテスト〜
Stopping Postfix Mail Transport Agent: postfix.
Starting Postfix Mail Transport Agent: postfix.
$ mailx memo@example.com
subject: test
test
cc:
シフトDで終了subject: test
test
cc:
とりあえずサーバーではこれだけにして、
Railsで設定を以下のようにする。
enviroments/production
config.action_mailer.default_url_options = { :host => "example.com" }
config.action_mailer.smtp_settings = { :enable_starttls_auto => false }
config.action_mailer.smtp_settings = { :enable_starttls_auto => false }
developementでもテストしたい場合は同じようにdevelopmentにも設定。
ログで確認をする。
以上でとりあえずメールが届きました〜
0 件のコメント:
コメントを投稿