Hi !
I try to attach some file with phpmailer.
you check checkbox to choose the files, and then they are sent to you by mail.
I use phpmailer.
When I check only one of the file, it works very well. By if I check 2 or 3 files, it send me only the first file of the list.
Why ?
Here is my code :
if ($POST['cond-gene']== "cond-gene")
{
$mail->AddAttachment("../pdf/contrat.pdf","conditions-generales.pdf");
}
if ($POST['adhesion']== "adhesion")
{
$mail->AddAttachment("../pdf/demande.pdf","demande-adhesion.pdf");
}
if ($_POST['quest-med']== "quest-med")
{
$mail->AddAttachment("../pdf/questionnaire-med.pdf","questionnaire-medical";
}
$mail->attach_all();