Probé también con la propiedad Sender algo así y tampoco:
Código PHP:
Ver original$mail = new \PHPMailer;
$mail->IsSMTP();
$mail->SMTPAuth = true;
$mail->SMTPSecure = 'ssl';
$mail->SMTPDebug = 0;
$mail->Host = "smtp.gmail.com";
$mail->Port = 465
$mail->Password = 'mipass';
$mail->From = $email;
$mail->Sender = $email;
$mail->Subject = $subject;
$mail->AltBody = "";
$mail->MsgHTML("<p>" . $message . "</p>");
$mail->IsHTML(true);
if ($mail->Send()) {
return true;
} else {
return false;
}