Ниже описано, как я это настрою, просто введите свои данные для каждого поля.Если у вас есть веб-хостинг, вы можете найти свою информацию в cPanel -> Веб-почта -> Настройка почтового клиента.
Если у вас нет веб-хостинга, вы можете отправлять почту через серверы Gmail.Пример того, как использовать это на GitHub: https://github.com/PHPMailer/PHPMailer/blob/master/examples/gmail.phps
//Create a new PHPMailer instance
$mail = new PHPMailer;
//Tell PHPMailer to use SMTP
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 0;
//Ask for HTML-friendly debug output
$mail->Debugoutput = 'html';
//Set the hostname of the mail server
$mail->Host = "xxxxxxx.com";
//Set the SMTP port number - likely to be 25, 465 or 587
$mail->Port = 587;
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
//Send HTML or Plain Text Email
$mail->isHTML(true);
//Username to use for SMTP authentication
$mail->Username = "xxx@xxxxx.com";
//Password to use for SMTP authentication
$mail->Password = "mypassword";
//Set who the message is to be sent from
$mail->setFrom('xxx@xxxxx.com', $name);
//Set an alternative reply-to address
$mail->addReplyTo($email, $name);
//Set who the message is to be sent to
$mail->addAddress('xxx@xxxxx.com', 'JayCuellar');
//Set the subject line
$mail->Subject = 'Subject Line';