Search code examples
ruby-on-railsruby-on-rails-4missing-template

Template is missing: Rails 4.2


Missing template contact_mailer/contact_email with "mailer". Searched in: * "contact_mailer"

I get this error when sending a contact form from my website. I'm not sure what I've done wrong or forgotten. Would some please be so kind to assist me? And maybe educate me a tad on whats going on here? My repo GitREPO


Solution

  • When mailing ContactMailer.contact_email view should be named the same as action - contact_mailer/contact_email.html.erb, but yours is named contact_mailer/contact_mailer.html.erb, thus it is not found.