-- 1) Initialize a Server to send the messages.
--
Wanadoo : SMTP.Server := SMTP.Initialize ("smtp.wanadoo.fr");
--
-- 2) Send a message via this server.
--
Result : SMTP.Status;
SMTP.Send (Server => Wanadoo,
From => SMTP.E_Mail ("Pascal Obry", "p.obry@wanadoo.fr"),
To => SMTP.E_Mail ("John Doe", "j.doe@watever.com"),
Subject => "Latest Ada news",
Message => "now Ada can send SMTP mail!",
Status => Result);