不工作在PHPMailer中使用(图像)发送电子邮件

I want to send attachment with PHP email, but it is not working. Can you help?

require 'class/class.phpmailer.php';
$mail = new PHPMailer;
$mail->IsSMTP();
$mail->SetLanguage("tr", "class/phpmailer.lang-tr.php");
$mail->CharSet  ="utf-8";
$mail->Encoding="base64";                               
$mail->Host = '*****************';      
$mail->Port = '587';                                
$mail->SMTPAuth = true;                         
$mail->Username = '*********************';                  
$mail->Password = '*';          *******************     
$mail->SMTPSecure = 'tls';                          
$mail->From = $_POST["email"];                  
$mail->FromName = $_POST["name"];               
$mail->AddAddress('**********************', '***************************');     
$mail->WordWrap = 50;                           
$mail->IsHTML(true);                            
$mail->AddAttachment($path);                    
$mail->Subject = '*************************';               
$mail->Body = $message;                         
if($mail->Send())                               
{
    $message = '<div class="alert alert-success">Destek Talebiniz Tarafımıza Ulaşmıştır</div>';
    unlink($path);
}
else
{
    $message = '<div class="alert alert-danger">There is an Error</div>';
}
}