Skip to content

Commit 46cc7e0

Browse files
committed
Update README to spell out role of SubscribeURL in UnsubscribeConfirmation messages
1 parent 5135ef7 commit 46cc7e0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,9 @@ Unsubscribing looks the same as subscribing, except the message type will be
127127

128128
```php
129129
if ($message['Type'] === 'UnsubscribeConfirmation') {
130-
file_get_contents($message['SubscribeURL']);
130+
// Unsubscribed in error? You can resubscribe by visiting the endpoint
131+
// provided as the message's SubscribeURL field.
132+
file_get_contents($message['SubscribeURL']);
131133
}
132134
```
133135

0 commit comments

Comments
 (0)