File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
appengine/php72/symfony-framework Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff 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.
271270The recommended way to send emails is to use a third-party mail provider such as [Sendgrid][sendgrid], [Mailgun][mailgun] or [Mailjet][mailjet].
272271Hosting 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.
273272You 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:
280279composer 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```
287285composer require symfony/mailgun-mailer
@@ -310,7 +308,7 @@ use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
310308use Symfony\Component\Mailer\MailerInterface;
311309use Symfony\Component\Mime\Email;
312310
313- class MailerController extends AbstractController
311+ class ExampleController extends AbstractController
314312{
315313 /**
316314 * @Route ("/email")
You can’t perform that action at this time.
0 commit comments