what's the correct http verb for a request that simply make the server send an email without altering the status of the whole webapp?
I am working on a Rails project and I need to define the route someway:
Rails.application.routes.draw do
get 'self_emailer/email_me'
...
end