Ho provato con:
Intendi questa?codice:include("Mail.php"); $recipients = "michele.mariani@databtech.com"; $headers["From"] = "mailfrom@example.com"; $headers["To"] = "mailto@example.com"; $headers["Subject"] = "Test message"; $body = "TEST MESSAGE!!!"; $params["host"] = "mail.databtech.com"; $params["port"] = "587"; $params["auth"] = true; $params["username"] = "info@his-srl.it"; $params["password"] = "His-srl_2014"; // Create the mail object using the Mail::factory method $mail_object =& Mail::factory("smtp", $params); $mail_object->send($recipients, $headers, $body);
https://github.com/PHPMailer/PHPMailer
che differenza c'è tra le 2? è possibile che venga inviata la password del mio account a persone esterne?


Rispondi quotando