class Index < ActionMailer::Base
  

  def send(sent_at = Time.now)
    subject    'Index#send'
    recipients ''
    from       ''
    sent_on    sent_at
    
    body       :greeting => 'Hi,'
  end

end
