http://qs321.pair.com?node_id=11102083

*alexandre* has asked for the wisdom of the Perl Monks concerning the following question:

Hi, I'm trying to send email from my web application but I got a connexion refused. I've installed hMailServer, and writte the Following code
#!"C:\xampp\perl\bin\perl.exe" use strict; use warnings; use MIME::Lite; my $Message = new MIME::Lite From =>'robot@localhost.localdomain', To =>'robot@localhost.localdomain', Subject =>'test' +, Type =>'TEXT', Data =>'test register'; $Message->attr("content-type" => "text/html; charset=iso-8859-1"); $Message->send_by_smtp('localhost:25'); print "Content-Type: text/html\n\n"; print "Send email from windows 10 ok";
the Following code found a fatal error at this line
$Message->send_by_smtp('localhost:25');