send-email ( email -- )
SMTP client library

Prev:<email> ( -- email )
Next:Setting up SMTP with gmail


Vocabulary
smtp

Inputs
emailan email


Outputs
None

Word description
Sends an e-mail.

Examples
USING: accessors smtp ; <email> "groucho@marx.bros" >>from { "chico@marx.bros" "harpo@marx.bros" } >>to { "gummo@marx.bros" } >>cc { "zeppo@marx.bros" } >>bcc "Pickup line" >>subject "If I said you had a beautiful body, would you hold it against me?" >>body send-email


Definition