Skip to content

Commit fa680cf

Browse files
committed
Integrate suggestions from Brent
1 parent 0683a7e commit fa680cf

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

appengine/php72/symfony-framework/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,6 @@ the [Stackdriver Error Reporting UI][stackdriver-errorreporting-ui]! If you copi
267267

268268
## Send emails
269269

270-
As stated in the [Migration guide from PHP 5.x to 7.x][cloud-migration] the Mail API or App Engine has been removed.
271270
The recommended way to send emails is to use a third-party mail provider such as [Sendgrid][sendgrid], [Mailgun][mailgun] or [Mailjet][mailjet].
272271
Hosting your application on GAE, most of these providers will offer you up to 30,000 emails per month and you will be charged only if you send more.
273272
You will have the possibility to track your email delivery and benefit from all the feature of a real email broadcasting system.
@@ -280,8 +279,7 @@ First you need to install the mailer component:
280279
composer require symfony/mailer
281280
```
282281

283-
Then depending on the provider you chose, you need to add the additional component, [Symfony mailer documentation][symfony-mailer]
284-
will give you all the specific per provider but here is an example with Mailgun:
282+
For this example, we will use `Mailgun`. To use a different mail provider, see the [Symfony mailer documentation][symfony-mailer].
285283

286284
```
287285
composer require symfony/mailgun-mailer
@@ -310,7 +308,7 @@ use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
310308
use Symfony\Component\Mailer\MailerInterface;
311309
use Symfony\Component\Mime\Email;
312310

313-
class MailerController extends AbstractController
311+
class ExampleController extends AbstractController
314312
{
315313
/**
316314
* @Route("/email")

0 commit comments

Comments
 (0)