my $msg = MIME::Lite->new( 'From' => $emailReturn, 'To' => $email, 'Subject' => $subject, 'Type' => 'text/html', 'Data' => $message, ); $msg->attr('MIME-Version' => '1.0'); $msg->attr('Encoding' => 'quoted-printable'); $msg->attr('content-type' => 'text/html'); $msg->attr("content-type.charset" => "windows-1252"); $msg->send('smtp', "[IP ADRESS]", Timeout=>60);