I was reading the rails doc about ActionMailer and I came out with a question when I read the following code:
# Tell the UserMailer to send a welcome Email after save
UserMailer.welcome_email(@user).deliver
the question is: are the methods declared in the ActionMailer class all static? Because the action welcome_email
is called on a class.