Help for this page

Select Code to Download


  1. or download this
    my $smtp = Net::SMTP->new($smtpServer, Timeout => 60) || &do_some_stuf
    +f $!;
    
  2. or download this
    my $smtp = (Net::SMTP->new(....) || &do_some_stuff...);
    
  3. or download this
    my $smtp = Net::SMTP->new(....) or &do_some_stuff $!;