### Create a styled subscription button
Source: https://antennapod.org/documentation/podcasters-hosters/add-on-antennapod
Use this HTML and CSS snippet to display a branded button that triggers the AntennaPod subscription deep link.
```html
Subscribe in AntennaPod
```
--------------------------------
### Create a subscription deep link
Source: https://antennapod.org/documentation/podcasters-hosters/add-on-antennapod
Use this URL structure to link directly to a podcast subscription in AntennaPod. Ensure URL encoding is applied to the feed URL and title parameters.
```text
https://antennapod.org/deeplink/subscribe?url=xyz&title=abc
```
--------------------------------
### HomeAssistant Notify Action for AntennaPod Update
Source: https://antennapod.org/documentation/automation/tasker
Use this notify action in HomeAssistant to send a broadcast intent to AntennaPod for updating feeds. Ensure the `message` is `command_broadcast_intent` and provide the correct package and class names.
```yaml
action: notify.mobile_app_
metadata: {}
data:
message: command_broadcast_intent
data:
intent_package_name: de.danoeh.antennapod
intent_class_name: de.danoeh.antennapod.net.download.service.feed.FeedUpdateReceiver
intent_action: Something random - cannot be empty
```
--------------------------------
### Automate Broadcast Send for AntennaPod Update
Source: https://antennapod.org/documentation/automation/tasker
Configure the 'Broadcast send' block in Automate to trigger AntennaPod feed updates. Specify the package name and receiver class for AntennaPod.
```plaintext
Package to be `de.danoeh.antennapod`
Receiver class to be `de.danoeh.antennapod.net.download.service.feed.FeedUpdateReceiver`
```
--------------------------------
### Tasker Send Intent for AntennaPod Update
Source: https://antennapod.org/documentation/automation/tasker
Set up a 'Send Intent' action in Tasker to update AntennaPod subscriptions. Target the action to 'Broadcast receiver' and provide the correct package and class names.
```plaintext
Select `System`
Select `Send Intent`
Specify Package name to be `de.danoeh.antennapod`
Specify Class name to be `de.danoeh.antennapod.net.download.service.feed.FeedUpdateReceiver`
Specify Target to be `Broadcast receiver`
```
=== COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.