From: Peter Alvin Date: 2008-09-02T20:05:20+09:00 Subject: Ruby doesn't need equal's signs for assigment? I'm new to Ruby... do you need ='s signs for assigment? On this page: http://api.rubyonrails.org/classes/ActionMailer/Base.html I see this example over and over.. where are the equal's signs??? class Notifier < ActionMailer::Base def signup_notification(recipient) recipients recipient.email_address_with_name from "system@example.com" subject "New account information" body :account => recipient end end TIA, Pet -- Posted via http://www.ruby-forum.com/.