我使用 Rails 的 Mailer 來做寄信服務
使用 google smtp 設定如下
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => "domain.cc",
:user_name => "[email protected]",
:password => "foo",
:authentication => "plain",
:enable_starttls_auto => true
}
當然 domain 是我自己的
我做學員驗證,寄到 [email protected] 的信箱 正常情況下每個學員都收的到
問題是當學員本身信箱有設自動轉寄 (return path) 例如轉到他們自己的 gmail 這些有設自動轉寄到其他信箱的學生會收不到信件
請問這是哪邊出了問題!?