You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I looked for and didn't find something related. Do you have a topic in mind ?
We are only implementing features that can be made generic enough to apply to almost all providers.
I totally understand this point, that's why I proposed a getOptions method which could take every transport-specific features. But another solution I had in mind would be to add a Transport configuration.
Again, I'm not interested in a generic way to pass options as I don't want to replace the official SDKs. If you need specific features, the official SDK is the way to go.
Description
The mailchimp mailer is based on the mandrill API and create a payload
https://github.com/symfony/mailchimp-mailer/blob/5.x/Transport/MandrillApiTransport.php#L77-L83
But this payload could have other values
https://mandrillapp.com/api/docs/messages.html
For instance I'm using a lot
track_opens
andtrack_clicks
.It would be great to add these two values (and maybe all the possible options of the API).
How should it be implemented ?
Does it require something like
Email::getOptions()
?The text was updated successfully, but these errors were encountered: