私は、Michael Hartl による Rails チュートリアルに従って いますが、Cloud 9 IDE を使用してメーラーをプレビューしようとすると、途中で問題が発生します。
ここに私の user_mailer.rb があります
class UserMailer < ApplicationMailer
def account_activation(user)
@user=user
mail to: user.email, subject: "Activate your focus. account"
end
def password_reset
@greeting = "Hi"
mail to: "to@example.org"
end
end
私の問題は、リンクを使用してメーラーをプレビューしようとしたときです
http:// ide.c9.io/-workspacename- /rails/mailers/user_mailer/account_activation
次のエラーが表示された空白のページが表示されます。
/dev_focus/focus/rails/mailers/user_mailer/account_activation を取得できません
何か案は?
ご協力いただきありがとうございます!