8 lines
233 B
Ruby
Executable File
8 lines
233 B
Ruby
Executable File
class Newsletter < ActiveRecord::Base
|
|
validates_presence_of :title
|
|
|
|
attr_accessible :title, :content, :email_from
|
|
|
|
EMAIL_FROMS=["Le Pic Vert <contact@lepicvert.asso.fr>", "Le Pic Vert <s.montchalin@lepicvert.asso.fr>"]
|
|
end
|