aboutsummaryrefslogtreecommitdiff
blob: 7b6e8646a2a98a670f6eb9c468ac9fc9b39fa308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
 * Created by PhpStorm.
 * User: marcin
 * Date: 11/23/17
 * Time: 10:21 AM
 */

namespace AppBundle\Controller;

use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;

class EmailController extends Controller
{
    /**
     * @Route("/email")
     */
    public function sendEmail()
    {
        $message = (new \Swift_Message('Hello Email'))
            ->setFrom('***REMOVED***')
            ->setTo('***REMOVED***@edu.easj.dk')
            ->setBody(
                $this->renderView(
// app/Resources/views/Emails/registration.html.twig
                    'emails/registration.html.twig',
                    array('name' => "Test")
                ),
                'text/html'
            )/*
* If you also want to include a plaintext version of the message
->addPart(
$this->renderView(
'Emails/registration.txt.twig',
array('name' => $name)
),
'text/plain'
)
*/
        ;

//$mailer->send($message);

// or, you can also fetch the mailer service this way
        $this->get('mailer')->send($message);
    }
}