я установил php mailer, используя композитор PHPMailer / PHPMailer, и получил каталог PHPMailer-Master, но как и какие файлы я могу включить в свой почтовый файл, например sendEmail.php.
Вот мой sendEmail.php-
include 'What is include paht?'
$mail = new PHPMailer;
$mail->setFrom($email, $name);
$mail->addAddress('dev5.veomit@gmail.com', 'Admin');
$mail->Subject = 'First PHPMailer Message';
$mail->Body = 'Hi! This is my first e-mail sent through PHPMailer.';
if(!$mail->send()) {
header("Location: https://m-expressions.com/test/voy/");
}else {
echo 'Mailer error: ' . $mail->ErrorInfo;
}
Пожалуйста, помогите мне завершить этот код.заранее спасибо.