I have a simple contact form with Subject and Message that I want to validate to prevent blank e-mails.
ActionMailer doesn't support validation. Where should I put it (i.e. in a separated model or directly in controller)?
UPDATE: what is the best way to implement validation in a non ActiveRecord model?