Skip to content
This repository has been archived by the owner on Sep 27, 2021. It is now read-only.

docs(mail): Mailgun update #373

Open
wants to merge 1 commit into
base: 4.1
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions 06-Digging-Deeper/07-Mails.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -352,12 +352,12 @@ The `mailgun` driver accepts an optional `extras` configuration object:
{
extras: {
'o:tag': '',
'o:campaign': ''
'o:tracking': ''
}
}
----

Check out Mailgun's link:https://mailgun-documentation.readthedocs.io/en/latest/api-sending.html#sending[documentation, window="_blank"] to learn more about their available options.
Check out Mailgun's link:https://documentation.mailgun.com/en/latest/api-sending.html#sending[documentation, window="_blank"] to learn more about their available options.

You can also pass `extras` at runtime using the `driverExtras` method:

Expand All @@ -366,7 +366,7 @@ You can also pass `extras` at runtime using the `driverExtras` method:
await Mail.send('view', data, (message) => {
message.driverExtras({
'o:tag': '',
'o:campaign': ''
'o:tracking': ''
})
})
----