Help for this page

Select Code to Download


  1. or download this
      my $head = $mail->head();
    
      if (!$head->get('From') || !$head->get('To') ||
          $head->get('From') eq "<>" || $head->get('To') eq "<>" ) {goto N
    +EXT;}
    
  2. or download this
      my $head = $mail->head();
    
      if (!$head->get('From') || !$head->get('To') ||
          $head->get('From') =~ /^<>$/ || $head->get('To') =~ /^<>$/) {got
    +o NEXT;}