Browse Source

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

Sevajol Bastien 11 years ago
parent
commit
840d16f2b1

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

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

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

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

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

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

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

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