Хочу запустить PHPMailer на локалке.
Выдаёт ошибку:
Warning: require(/phpmailer/src/Exception.php): failed to open stream: No such file or directory in D:\OSPanel\domains\texst\send.php on line 6
Fatal error: require(): Failed opening required '/phpmailer/src/Exception.php' (include_path='.') in D:\OSPanel\domains\test\send.php on line 6
Вот
php-код:
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
use PHPMailer\PHPMailer\SMTP;
require '/phpmailer/src/Exception.php';
require '/phpmailer/phpmailer/src/PHPMailer.php';
require '/phpmailer/phpmailer/src/SMTP.php';
if(isset($_POST["send"])){
$mail = new PHPMailer(true);
$mail->isSMTP();
$mail->Host = 'smtp.gmail.com';
$mail->SMTPAuth = true;
$mail->Username = '!!!!!!!@gmail.com';
$mail->Password = '!!';
$mail->SMTPSecure= 'ssl';
$mail->Port = 465;
$mail->setFrom('!!!!!@gmail.com');
$mail->addAddress($_POST["email"]);
$mail->isHTML(true);
$mail->Subject = $_POST["subject"];
$mail->Body = $_POST["message"];
$mail->send();
echo
"
<script>
alert('Send Successfully')
document.location.href = 'index.php';
</script>
";
}
?>
Я только учусь. Помогите, пожалуйста.