Browse Source

passage de l'adresse d'expedition noreply@muzi.ch à contact@muzi.ch

Sevajol Bastien 12 years ago
parent
commit
840d16f2b1

+ 1 - 1
app/config/config_dev.yml View File

11
     
11
     
12
 swiftmailer:
12
 swiftmailer:
13
     transport:  smtp
13
     transport:  smtp
14
-    username:   noreply@muzi.ch
14
+    username:   contact@muzi.ch
15
     password:   ***REMOVED***
15
     password:   ***REMOVED***
16
     host:       mx.muzi.ch
16
     host:       mx.muzi.ch
17
     port:       587
17
     port:       587

+ 1 - 1
app/config/config_prod.yml View File

26
             handler: swift
26
             handler: swift
27
         swift:
27
         swift:
28
             type:       swift_mailer
28
             type:       swift_mailer
29
-            from_email: noreply@muzi.ch
29
+            from_email: contact@muzi.ch
30
             to_email:   sevajol.bastien@gmail.com
30
             to_email:   sevajol.bastien@gmail.com
31
             subject:    An Error Occurred (muzi.ch)!
31
             subject:    An Error Occurred (muzi.ch)!
32
             level:      debug
32
             level:      debug

+ 1 - 1
src/Muzich/CoreBundle/Command/CheckModerateCommand.php View File

54
       
54
       
55
       $message = \Swift_Message::newInstance()
55
       $message = \Swift_Message::newInstance()
56
           ->setSubject('Muzi.ch: Contrôle modération')
56
           ->setSubject('Muzi.ch: Contrôle modération')
57
-          ->setFrom('noreply@muzi.ch')
57
+          ->setFrom('contact@muzi.ch')
58
           ->setTo('sevajol.bastien@gmail.com')
58
           ->setTo('sevajol.bastien@gmail.com')
59
           ->setBody($this->getContainer()->get('templating')->render('MuzichCoreBundle:Email:checkmoderate.txt.twig', array(
59
           ->setBody($this->getContainer()->get('templating')->render('MuzichCoreBundle:Email:checkmoderate.txt.twig', array(
60
             'tags'     => $count_tags,
60
             'tags'     => $count_tags,

+ 1 - 1
src/Muzich/UserBundle/Controller/UserController.php View File

417
 
417
 
418
       $message = \Swift_Message::newInstance()
418
       $message = \Swift_Message::newInstance()
419
         ->setSubject($subject)
419
         ->setSubject($subject)
420
-        ->setFrom('noreply@muzi.ch')
420
+        ->setFrom('contact@muzi.ch')
421
         ->setTo($email)
421
         ->setTo($email)
422
         ->setBody($body);
422
         ->setBody($body);
423
 
423