jobbersbaseのphpmailer()にファイルを追加しようとしています。
しかし、私はそれを正しく追加する方法を取得していません
私はこのように使用していますが、メールは$ mailer-> Body =($ data ['apply_location1']);、つまり$ mailer-> AltBody =$msg;のすぐ上にあります。声明。しかし、私はすべての情報をメールで送りたいです。
public function MailApplyOnline($data)
{
$mailer = $this->getConfiguredMailer();
$subject = $this->emailTranslator->GetApplyOnlineSubject($data);
$msg = $data['apply_msg'];
$msg .= $this->emailTranslator->GetApplyOnlineMsg($_SERVER['HTTP_REFERER']);
$mailer->SetFrom($data['apply_email'], $data['apply_name']);
$mailer->AddAddress($data['company_email'], $data['company_name']);
$mailer->Subject = $subject;
$mailer->Body = $this->nl2br($msg);
$mailer->Body = ($data['apply_company']);
$mailer->Body = ($data['apply_contact']);
$mailer->Body = ($data['apply_title']);
$mailer->Body = ($data['apply_location']);
$mailer->Body = ($data['apply_location1']);
$mailer->AltBody = $msg;
if ($data['attachment_filename'] != '')
{
$mailer->AddAttachment($data['attachment_path'], $data['attachment_filename']);
}
if ($mailer->Send())
{
return true;
}
else
{
return false;
}
}