What is the difference between `after_create` and `after_save` and when to use which?

Viewed 50990

Are after_create and after_save the same as per functionality?

I want to do an operation with the email of a user after its account creation.

I want to do that operation when it is saved in the database.

which is preferable to use: after_create or after_save?

3 Answers
Related