mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
29 lines
704 B
Markdown
29 lines
704 B
Markdown
|
---
|
||
|
id: b6e6c503-c614-4bf3-872a-3a6202e2dbfb
|
||
|
title: Notification Emails
|
||
|
---
|
||
|
|
||
|
# Description
|
||
|
|
||
|
Standardized messages used to send notifications to yourself
|
||
|
|
||
|
# Syntax
|
||
|
|
||
|
``` php
|
||
|
use Symfony\Bridge\Twig\Mime\NotificationEmail;
|
||
|
|
||
|
$email = (new NotificationEmail())
|
||
|
->from('fabien@example.com')
|
||
|
->to('fabien@example.org')
|
||
|
->subject('My first notification email via Symfony')
|
||
|
->markdown(<<<EOF
|
||
|
There is a **problem** on your website, you should investigate it
|
||
|
right now. Or just wait, the problem might solves itself automatically,
|
||
|
we never know.
|
||
|
EOF
|
||
|
)
|
||
|
->action('More info?', 'https://example.com/')
|
||
|
->importance(NotificationEmail::IMPORTANCE_HIGH)
|
||
|
;
|
||
|
```
|