how to add file attachment in PHPMailer?

mack picture mack · Feb 2, 2012 · Viewed 9.2k times · Source

I am using PHPMailer for mailing facility, I want add file with each mail from my server.

following is folder structure on my server.

-public-html
  - main-folder
    - files
       - a.doc
       - b.docx
    - mailer
       - mailer.php

i have tried the following line in my mailer.php file but it is not working

$mail->AddAttachment('main-folder/files/a.doc', 'pricelist.doc'); 

Answer

Miguel Borges picture Miguel Borges · Feb 3, 2012

try this:

$mail->AddAttachment($_SERVER["DOCUMENT_ROOT"] . '/main-folder/files/a.doc', 'pricelist.doc');