OhmysmtpClient.EmailSendRequest (ohmysmtp_client v0.1.1)

OhMySmtpCleint.EmailSendRequest to be used when calling send_email

Examples

iex> %OhmysmtpClient.EmailSendRequest{
                                from: "elixir@example.com",
                                subject: "Test",
                                textbody: "from elixir",
                                to: "hex@example.com"
    }

Link to this section Summary

Link to this section Types

Specs

t() :: %OhmysmtpClient.EmailSendRequest{
  from: String.t(),
  subject: String.t(),
  textbody: String.t(),
  to: String.t()
}