defmodule ReactPhoenix.Email do
alias SendGrid.Email
alias SendGrid.Mail
def test() do
Email.build()
|> Email.add_to("jsjfuentesj@gmail.com")
|> Email.put_from("test@slingshow.com")
|> Email.put_subject("Hello from Elixir")
|> Email.put_text("Sent with Elixir")
|> Mail.send()
end
end