Help for this page

Select Code to Download


  1. or download this
    sub send_email_html {
        local($to, $from, $subject, $bodyHTML, $bodyTEXT) = @_;
    ...
        print MAIL "$bodyHTML\n";
        close (MAIL);
    }
    
  2. or download this
    use Mail::Bulkmail;
    $bulk = Mail::Bulkmail->new(
    ...
        HTML        => 1,
    );
    $bulk->mail($toAddy);