New in Symfony 6.1: Draft Emails

Contributed by Kevin Bond in #44311.

In HTML it's possible to create email links that, when clicked, open a new email message with some pre-filled information rather than linking to some other page:

Send email

Send email

However, sometimes you need to create a full email, with lots of contents and even file attachments. You can't do that with the mailto: feature. That's why Symfony 6.1 will add a feature to create draft emails. Draft emails are email messages created as a file with the .eml extension and with the X-Unsent header set. This allows email clients to interpret them as draft emails that you can use to create the email to be sent. First, use the new DraftEmail class to create those emails:

    use Symfony\Component\Mime\DraftEmail;

$message = (new DraftEmail()) // ... ->html($this->renderView('...')) ->attach('...');

Now you can define a controller that downloads this draft email as a .eml file:

    // src/Controller/DownloadEmailController.php

namespace App\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\ResponseHeaderBag; use Symfony\Component\Mime\DraftEmail; use Symfony\Component\Routing\Annotation\Route;

class BudgetController extends AbstractController {

[Route('/budget/estimate-generator/{clientId}')]

public function estimateGenerator(): Response
{
    // ...

    $message = (new DraftEmail())
        ->subject('Your estimate is now available')
        ->html($this->renderView('...'))
        ->attach('...');

    $response = new Response($message->toString());
    $contentDisposition = $response->headers->makeDisposition(
        ResponseHeaderBag::DISPOSITION_ATTACHMENT,
        'estimate.eml'
    );
    $response->headers->set('Content-Type', 'message/rfc822');
    $response->headers->set('Content-Disposition', $contentDisposition);

    return $response;
}

}

                Sponsor the Symfony project.

https://symfony.com/blog/new-in-symfony-6-1-draft-emails?utm_source=Symfony%20Blog%20Feed&utm_medium=feed

Utworzony 3y | 29 kwi 2022, 08:20:20


Zaloguj się, aby dodać komentarz

Inne posty w tej grupie

SymfonyOnline June 2025: Combining Turbo, LiveComponent & Stimulus... the Right Way?

SymfonyOnline June 2025 is almost here, starting in almost 2 months on:

June 10-11: Workshop days. It is possible to attend 1 two-day training or 2 one-day trainings. June 12-13: Online confe

7 maj 2025, 13:10:15 | Symfony
New in Symfony 7.3: New and Improved Console Helpers

Symfony 7.3 introduces powerful improvements to the Console component, beyond the much-anticipated invokable commands and input attributes. This version also brings new helpers and features designed t

7 maj 2025, 08:30:04 | Symfony
New in Symfony 7.3: Static Error Pages

Contributed by Loick Piera in

6 maj 2025, 09:20:10 | Symfony
New in Symfony 7.3: Simpler Server Event Streaming

Contributed by Yonel Ceruto in

5 maj 2025, 07:50:03 | Symfony
A Week of Symfony #957 (April 28 – May 4, 2025)

This week, Symfony 6.4.21 and 7.2.6 maintenance versions were released. In addition, we published the first beta of Symfony 7.3 so you can test it in your own apps before its final release at the end

4 maj 2025, 08:40:05 | Symfony
Symfony 7.2.6 released

Symfony 7.2.6 has just been released. Here is the list of the most important changes since 7.2.5:

bug #60288 [VarExporter] dump default value for property hooks if present (@xabbuh)

bug #60267 [C

2 maj 2025, 12:40:05 | Symfony
Symfony 7.3.0-BETA1 released

Symfony 7.3.0-BETA1 has just been released. Here is the list of the most important changes since 7.2:

feature #60232 Add PHP config support for routing (@fabpot)

feature #60102 [HttpFoundation] A

2 maj 2025, 12:40:04 | Symfony