Help for this page

Select Code to Download


  1. or download this
      my $msg = MIME::Lite->new(
        From     => $from,
        To       => $to,
        Type     => 'multipart/alternative',
        Subject  => $subject_val,
      );
    
  2. or download this
      my $msg = MIME::Lite->new(
        Type     => 'multipart/alternative',
        Subject  => $subject_val,
      );
    
  3. or download this
      my $msg = MIME::Lite->new(
        Type     => 'multipart/alternative',
        Subject  => $subject_val,
    ...
        $smtp->data();
        $smtp->datasend($email);
        $smtp->quit();