We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feefef8 commit 0880f2aCopy full SHA for 0880f2a
README.md
@@ -60,6 +60,24 @@ expert_coder_swiftmailer_send_grid:
60
api_key: %sendgrid_api_key%
61
categories: [my_category] # optional, will be added to all mails sent (can be seen on sendgrid dashboard)
62
```
63
+Symfony 3
64
+---------
65
+
66
+Since Symfony 3.2, you must name the custom transport service swiftmailer.mailer.transport.< name > so you can use one of the solutions below:
67
68
+*services.yml*
69
+```yml
70
+services:
71
+ swiftmailer.mailer.transport.expertcoder_swift_mailer.send_grid.transport:
72
+ alias: expertcoder_swift_mailer.send_grid.transport
73
+```
74
+**OR**
75
76
+*config.yml*
77
78
+swiftmailer:
79
+ transport: 'swiftmailer.mailer.transport.expertcoder_swift_mailer.send_grid'
80
81
82
## Important !
83
0 commit comments