Help for this page

Select Code to Download


  1. or download this
    openssl s_client -starttls smtp -crlf -connect smtpserver:25
    .
    ...
    .
    .
    334 VXNlcm5hbWU6
    
  2. or download this
    my $smtp = Net::SMTP_auth->new('smtpserver');
    $smtp->starttls;
    $smtp->auth('LOGIN', 'username', 'password);