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');
try this:
$mail->AddAttachment($_SERVER["DOCUMENT_ROOT"] . '/main-folder/files/a.doc', 'pricelist.doc');