Skip to content

Instantly share code, notes, and snippets.

@ranguard
Created September 12, 2011 07:49
Show Gist options
  • Save ranguard/1210779 to your computer and use it in GitHub Desktop.
Save ranguard/1210779 to your computer and use it in GitHub Desktop.
# Send an email
use Email::Sender::Simple qw(sendmail);
use Email::Simple;
use Email::Simple::Creator;
my $email = Email::Simple->create(
header => [
To => '"Xavier Q. Ample" <[email protected]>',
From => '"Bob Fishman" <[email protected]>',
Subject => "don't forget to *enjoy the sauce*",
],
body => "This message is short, but at least it's cheap.\n",
);
sendmail($email);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment