Skip to content

Commit

Permalink
add sms to pushbullet doc (home-assistant#12214)
Browse files Browse the repository at this point in the history
* add sms to doc

* Fix service payload example

* fix
  • Loading branch information
frenck authored Mar 5, 2020
1 parent 9e80703 commit eb95f2a
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions source/_integrations/pushbullet.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -113,20 +113,21 @@ Type | Prefix | Suffix | Example
Device | `device/` | Device nickname | `device/iphone`
Channel | `channel/` | Channel tag | `channel/my_home`
Email | `email/` | Contact's email address | `email/[email protected]`
SMS | `sms/` | Contact's phone number | `sms/0612345678`

If using targets, your own account's email address functions as 'send to all devices'. All targets are verified (if exists) before sending, except email.

#### Example service payload

```json
{
"message": "A message for many people",
"target": [
"device/telephone",
"email/[email protected]",
"channel/my_home"
]
}
```yaml
message: A message for many people
target:
- device/telephone
- email/[email protected]
- channel/my_home
- sms/0612345678
```

To use notifications, please see the [getting started with automation page](/getting-started/automation/).
Expand Down

0 comments on commit eb95f2a

Please sign in to comment.