Send an email from the Rails console (e.g. for testing purposes):

ActionMailer::Base.mail(
  from: "[email protected]",
  to: "[email protected]",
  subject: "A test email",
  body: "This is a test email to test email delivery.",
  delivery_method: :my_email_service_api
).deliver_now

Remove delivery_method if you only have one and did not configure special delivery methods.