New in Symfony 6.1: Draft Emails
April 29, 2022 • Published by Javier Eguiluz
Symfony 6.1 is backed by:
Warning: This post is about an unsupported Symfony version. Some of this information may be out of date. Read the most recent Symfony Docs.
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:
1 2 3 4 5 6 7 8 9 10 11
<!-- creates an empty email with only the recipient address pre-filled -->
<a href="mailto:someone@example.com">Send email</a>
<!-- creates an email with most of its elements pre-filled -->
<a href="mailto:someone@example.com
?cc=other@example.com
&bcc=another@example.com
&subject=Lorem%20Ipsum
&body=Some%20content%20of%20the%20email">
Send email
</a>
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:
1 2 3 4 5 6
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:
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
// 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;
}
}
Help the Symfony project!
As with any Open-Source project, contributing code or documentation is the most common way to help, but we also have a wide range of sponsoring opportunities.
Comments are closed.
To ensure that comments stay relevant, they are closed for old posts.
- Client's browser is set to open .EML files directly instead of saving it in Downloads folder and requires additional user action to find and open it.
- Client's emailing software must support this unofficial "X-Unsent" header. Our e-mail client (Tobit David Client) does not. What about mobile e-mail clients?
As far as I could find out, Outlook and Thunderboards seems to support this. What about others?
- Is there a fallback solution for clients with no such support?
This works well if you know your clients (i.e. using this technique in internals applications).
In the example of this blog post we do that, imagining that this is used to automate the sending of budget estimates to clients.