Who This Is For
Digital product resellers who want to ship fast, scale profitably, and leverage AI to convert low-cost PLR (Private Label Rights) content into high-margin digital assets β without writing a single word themselves.
What You Get
A fully importable Make.com automation scenario that:
- Finds fresh PLR content from RSS feeds or directories.
- Rewrites it with AI for uniqueness and branding.
- Repackages it into branded PDFs or lead magnets.
- Uploads them to Gumroad or Shopify with SEO metadata.
This automation helps you speed up content creation, reduce manual effort, and increase resellable inventory with minimal oversight β ideal for creators, resellers, and indie hackers who want to monetize content at scale.
π Related: AI Prompt Pack for Indie Makers | Gumroad vs Payhip: Reseller Comparison | Blog Article to Multi-Format Automation Recipe
Automation Overview
Trigger: New PLR content found via RSS feed or directory scrape
Steps:
- Fetch content from RSS or API
- Extract body text and metadata
- Reword content using OpenAI GPT (with custom prompt)
- Convert rewritten content to branded PDF
- Upload to Gumroad or Shopify with metadata
- Post to social or email automation tools
Outcome: A new branded ebook or lead magnet automatically created and published for sale within minutes.
Make.com Scenario (JSON Export)
{
"name": "PLR Content to Branded Ebook Automation",
"modules": [
{
"id": "rss-trigger",
"type": "rss",
"action": "watchNewItems",
"parameters": {
"url": "https://example-plr-site.com/feed",
"limit": 1
}
},
{
"id": "extract-content",
"type": "text",
"action": "parseHTML",
"parameters": {
"input": "{{rss-trigger.content}}",
"selector": "body"
}
},
{
"id": "rewrite-content",
"type": "openai",
"action": "complete",
"parameters": {
"model": "gpt-4-turbo",
"prompt": "Rewrite the following content in a unique, branded tone for a digital product. Remove any mentions of the original author or site. Focus on clarity and engagement.\n\n{{extract-content.output}}",
"temperature": 0.7
}
},
{
"id": "generate-pdf",
"type": "pdf",
"action": "createFromHTML",
"parameters": {
"html": "<h1>{{rss-trigger.title}}</h1><p>{{rewrite-content.output}}</p>",
"filename": "{{rss-trigger.title | slugify}}.pdf"
}
},
{
"id": "upload-to-gumroad",
"type": "gumroad",
"action": "createProduct",
"parameters": {
"name": "{{rss-trigger.title}}",
"description": "A freshly rewritten, AI-branded digital asset.",
"file": "{{generate-pdf.output}}",
"price": 7,
"published": true
}
},
{
"id": "notify-slack",
"type": "slack",
"action": "sendMessage",
"parameters": {
"channel": "#content-automation",
"text": "β
New ebook published: {{rss-trigger.title}} β {{upload-to-gumroad.url}}"
}
}
]
}
Step-by-Step Setup Guide
Import the Scenario
- Log into Make.com
- Click Create New Scenario
- Import the JSON above using the Import Scenario option
Configure the RSS Trigger
- Replace
https://example-plr-site.com/feedwith a real PLR RSS feed - Choose a frequency (e.g., every 6 hours)
- Replace
Set Up OpenAI Rewriter
- Connect your OpenAI API key
- Adjust the prompt to match your brand tone
Customize PDF Styling
- Add a header/footer with your brand name or logo
- Use HTML/CSS to format the PDF output
Connect Gumroad
- Add your Gumroad API credentials
- Set default price and visibility options
Test and Schedule
- Run a test with sample content
- Enable auto-run for continuous publishing
Troubleshooting FAQ
Q: Why is the content not rewriting?
A: Ensure your OpenAI connection is active and your prompt isnβt too long or vague.
Q: My PDFs look unbranded.
A: Edit the HTML in the PDF module to include your logo, brand colors, or custom fonts.
Q: Gumroad upload fails.
A: Confirm your API key is valid and the file size is under 500MB.
Q: How often should I run this?
A: Start with every 6β12 hours to avoid content flooding. Adjust based on performance.
Monetization Next Step
Once you've automated 5β10 lead magnets or ebooks, bundle them into a niche starter pack and list it on Gumroad or your Shopify store. Use the AI Prompt Pack for Indie Makers to help you craft upsell funnels and product descriptions that convert.
Ready to automate your next digital asset? Import this recipe into Make now.