Help for this page

Select Code to Download


  1. or download this
    use Email::Simple;
    use Email::Sender::Simple qw(sendmail);
    
    ...
      body   => $message,
    );
    sendmail($email);
    
  2. or download this
    use MIME::Lite;
    use MIME::Lite::HTML;
    use HTML::FormatText::WithLinks;
    ...
      die "@errors" if @errors = $ml->errstr;
      $m->send;
    }