سلام من طبق ویدیو جلو رفتم ولی ایمیل ارسال نمیشه نمیدونم مشکل چیه ؟
<?php
require 'bootstrap/init.php';
$mail->addAddress('dfd@dfdfd.com', 'Jodffde ddd');
$mail->Subject = 'Here is the subject';
$mail->Body = '<h2>hi</h2>';
$n=$mail->send();
var_dump($n);
<?php
$mail = new PHPMailer\PHPMailer\PHPMailer();
$mail->isSMTP();
$mail->Host = 'sandbox.smtp.mailtrap.io';
$mail->SMTPAuth = true;
$mail->Port = 2525;
$mail->Username = 'eec204b9d9b769';
$mail->Password = '1f366cb95eee81';
$mail->setFrom('from@example.com', 'Mailer');
$mail->isHTML(true);