Bonjour,
Pour le script phpmailer, j'aimerai pouvoir avoir un accusé de réception mais sans message d'alerte avoir une redirection sur un page php qui va incrémenter mon compteur.
Voici le script pour encoyer le mailing:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32 <?php $address = $_POST['mails']; include_once('../class.phpmailer.php'); $mail = new PHPMailer(); // defaults to using php "mail()" $body = $mail->getFile('contents.html'); $body = eregi_replace("[\]",'',$body); $mail->From = "mailing@aaa.com"; $mail->FromName = "Mailing"; $mail->Subject = "Mailing"; $mail->AltBody = "Si vous ne parvenez pas à lire le message, cliquez ici! <br> Visitez notre site internet"; // optional, comment out and test $mail->MsgHTML($body); $mail->AddAddress("aaa@bbb.com", "Antoine"); /* $mail->AddAttachment(""); // attachment */ $body = $mail->AddBCC($address); if(!$mail->Send()) { echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message sent!"; echo $_POST['mails']; } ?>
Cela est il possible ? si oui pourriez vous m'aider
Merci d'avance
Partager