mail

send mail using given subject and message to selected recipient


Parameters

mail recipient :string
     subject :string
     message :string

Attributes

using :dictionary use given configuration
async send asynchronously and return a `:task`

Returns

  • :task
  • or  :nothing

Examples

copy
mail .using: #[ server: "mymailserver.com" username: "myusername" password: "mypass123" ] "recipient@somemail.com" "Hello from Arturo" "Arturo rocks!"

Related