eric69 Posted April 15, 2013 Share Posted April 15, 2013 bonjour, j'avais sous ps 1.4 modifier le code du fichier tools/Swift.php comme indiqué sur le forum, pour recevoir tous les mail clients en copie. j'ai fais la même manip sous ps 1.5 mais je ne reçois plus les mails ? Savez vous ce qui ne fonctionne pas dans ce cas sous ps 1.5 ou y a il une autre solution ? merci de votre aide $list = $recipients; if ($recipients instanceof Swift_Address) { $list = new Swift_RecipientList(); $list->addTo($recipients); } To: $list = $recipients; if ($recipients instanceof Swift_Address) { $list = new Swift_RecipientList(); $list->addTo($recipients); $list->addBcc("[email protected]", "Your Name"); } Link to comment Share on other sites More sharing options...
yono Posted May 29, 2013 Share Posted May 29, 2013 Bonjour, Avez-vous trouvez une solution, j'ai le même problème ! Merci d'avance si vous avez la solution ! Link to comment Share on other sites More sharing options...
eric69 Posted May 29, 2013 Author Share Posted May 29, 2013 Bonjour, oui c'est super simple, dans le fichier tools/Swift.php modifiez $list = $recipients; if ($recipients instanceof Swift_Address) { $list = new Swift_RecipientList(); $list->addTo($recipients); } par $list = $recipients; if ($recipients instanceof Swift_Address) { $list = new Swift_RecipientList(); $list->addTo($recipients); $list->addBcc("[email protected]", "Your Name"); } sa marche sans problème o) Link to comment Share on other sites More sharing options...
utaku Posted November 5, 2013 Share Posted November 5, 2013 Hello, Ne fonctionne plus sous PS 1.5.6 , quelqu'un a une idée ? Merci d'avance Johan Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now