I have a method that is called after the creation of an object
after_create :send_welcome_email
Is there a way to limit this to a condition, such as the value of an attribute of an object
after_create :send_welcome_email unless self.role == "Celebrant"
for example?