Help for this page

Select Code to Download


  1. or download this
        $__to =~ s/(\r\n|\n\r|\r|\n)/\r\n/sg;
        $__cc =~ s/(\r\n|\n\r|\r|\n)/\r\n/sg;
        ...
    
  2. or download this
    my %mail =
    (
    ...
        "Subject"         => "$__subject",
        "Content-Type"     => $__content_type,
    );
    
  3. or download this
    for ( $__to, $__subject, $__content_type, ... ) {
        tr/\r\n/ /;
    ...
        "Subject"         => $__subject,
        "Content-Type"     => $__content_type,
    );
    
  4. or download this
    my @message_lines = 
      ( '', # blank line
    ...
       );
    
    my $_mail_message = join( "\r\n", @message_lines );