-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add filter clicktrack to README
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,6 +54,7 @@ brew services list | |
``` | ||
|
||
#### Environment and Dependencies | ||
|
||
Install Pipenv (if needed) | ||
|
||
```bash | ||
|
@@ -161,6 +162,38 @@ You can provide attachments either inline (with the base64-encoded `content` fie | |
} | ||
``` | ||
|
||
### Filter: clicktrack | ||
|
||
[docs.sendgrid.com](https://docs.sendgrid.com/for-developers/sending-email/smtp-filters#filter-clicktrack) | ||
|
||
```json | ||
{ | ||
"subject": "Hi Diddly Ho", | ||
"to": [{ | ||
"email": "[email protected]", | ||
"name": "Homer Simpson" | ||
}], | ||
"from": { | ||
"email": "[email protected]", | ||
"name": "Ned Flanders" | ||
}, | ||
"content": [ | ||
{ | ||
"type": "text/plain", | ||
"value": "Try search with https://google.com" | ||
} | ||
], | ||
"filters" : { | ||
"clicktrack" : { | ||
"settings" : { | ||
"enable" : 0, | ||
"enable_text" : false | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
|
||
## Testing | ||
|
||
Code coverage command with missing statement line numbers | ||
|