#!/usr/bin/perl use 5.010; use Email::MIME; my $message = Email::MIME->create( header_str => [ From => 'alizze@name.se', To => 'myown@gmail.com', Subject => 'Happy birthday!', ], attributes => { encoding => 'quoted-printable', charset => 'ISO-8859-1', }, body_str => "Happy birthday to you!\n", ); # send the message use Email::Sender::Simple qw(sendmail); sendmail($message);