Profile Configuration
The Profile page allows users to:
- Set or update their email address for receiving notifications.
- Customize the email template used for notifications.
- Use mustache syntax for creating dynamic content within the emails.
URL:
https://rss2email.dtz.rocks/profile/
Email Address Configuration
- Field:
Email Address
- Description: Enter the email address where notification emails will be sent.
- Example:
test@example.com
Email Template
The template engine uses Mustache syntax to generate outgoing notification emails.
Available Keywords
You can use the following placeholders in your template:
{{title}}
– Inserts the title of the feed item.{{link}}
– Inserts the URL of the feed item.{{description}}
– Inserts a short description of the item.{{content}}
– Inserts the full content of the item.{{date}}
– Inserts the publication date of the item.
Template Fields
Subject
The subject line of your email.
- Example:
{{title}}
Body
The body content of your email. • Example:
{{link}} {{& description}}
The {{& description}} syntax ensures that the description is rendered without HTML escaping.
⸻
Saving Changes
After configuring your email address and template: 1. Click the Save button. 2. Your settings will be applied immediately for future emails.
⸻
Example Email Output
Given the following feed item: • Title: New Feature Released • Link: https://example.com/news/feature • Description: We have released a new feature today.
Your template:
Subject: {{title}} Body: {{link}} {{& description}}
Would produce:
Subject: New Feature Released Body: https://example.com/news/feature We have released a new feature today.