Skip to content

Commit

Permalink
docs: add filter clicktrack to README
Browse files Browse the repository at this point in the history
  • Loading branch information
hshaosf committed Oct 23, 2023
1 parent 2e37407 commit 7d0fb62
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ brew services list
```

#### Environment and Dependencies

Install Pipenv (if needed)

```bash
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 7d0fb62

Please sign in to comment.