RosettaCodeData/Task/Send-email/Pike/send-email.pike

9 lines
239 B
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
int main(){
string to = "some@email.add";
string subject = "Hello There.";
string from = "me@myaddr.ess";
string msg = "Hello there! :)";
Protocols.SMTP.Client()->simple_mail(to,subject,from,msg);
}