فهرست منبع

bouton de test d'envoi de mail

François 6 سال پیش
والد
کامیت
4292e2f2d0
2فایلهای تغییر یافته به همراه20 افزوده شده و 2 حذف شده
  1. 16 0
      src/AppBundle/Controller/SecurityController.php
  2. 4 2
      src/AppBundle/Resources/views/security/liste.html.twig

+ 16 - 0
src/AppBundle/Controller/SecurityController.php

@@ -132,5 +132,21 @@ class SecurityController extends Controller
         ));
     }
 
+    /**
+     * @Route("/admin/sendmailtest/{id}", name="admin_sendmailtest")
+     */
+    public function sendMailTestAction(\Swift_Mailer $mailer, User $user)
+    {
+        $swiftMessage = new \Swift_Message('Mail de test pour la vidéothèque');
+        $message = $swiftMessage
+            ->setFrom('admin@fdlibre.eu')
+            ->setTo($user->getMail())
+            ->setBody("Salut ".$user->getUsername().", Ceci est un mail de test de l'application Videotheque.");
+
+        $mailer->send($message);
+        $this->addFlash('success', 'Le mail a été envoyé à '.$user->getUsername());
+        return $this->redirectToRoute('admin_index');
+    }
+
 
 }

+ 4 - 2
src/AppBundle/Resources/views/security/liste.html.twig

@@ -14,6 +14,7 @@
             <th>Prénom</th>
             <th>Nom</th>
             <th>Mail</th>
+            <th>Test Mail</th>
             <th>Roles</th>
             <th>Actions</th>
         </tr>
@@ -32,10 +33,11 @@
                 <td>{{ user.prenom }}</td>
                 <td>{{ user.nom }}</td>
                 <td>{{ user.mail }}</td>
+                <td><a href="{{ path('admin_sendmailtest', {"id": user.id}) }}">Envoyer un mail test</a></td>
                 <td>{% for role in user.roles %}<p>{{ role }}</p>{% endfor %}</td>
                 <td>
-                    {%  if user != app.user %}<a href="{{ path('admin_deluser', {'id': user.id})  }}"><i class="fa fa-trash fa-lg", style="color:Tomato;"></i></a>{%  endif %}
-                    <a href="{{ path('admin_edituser', {'id': user.id})  }}"><i class="fa fa-edit fa-lg", style="color:DodgerBlue;"></i></a>
+                    {%  if user != app.user %}<a href="{{ path('admin_deluser', {'id': user.id})  }}"><i class="fa fa-trash fa-lg" style="color:Tomato;"></i></a>{%  endif %}
+                    <a href="{{ path('admin_edituser', {'id': user.id})  }}"><i class="fa fa-edit fa-lg" style="color:DodgerBlue;"></i></a>
                 </td>
             </tr>
         {% endfor %}