Jump to content

copie mail pour admin


Recommended Posts

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

  • 1 month later...

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

  • 5 months later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...