← back to Watches

affiliate-applications.sh

106 lines

#!/bin/bash

# Affiliate Program Application Helper
# Opens all affiliate program signup pages

echo "🚀 Opening Affiliate Program Applications..."
echo ""
echo "This script will open signup pages for all 6 affiliate networks."
echo "Apply to each one using the details from AFFILIATE_SIGNUP_GUIDE.md"
echo ""
echo "Press ENTER to continue..."
read

# Network 1: CJ Affiliate (WatchBox + Jomashop)
echo "📍 Opening CJ Affiliate (covers WatchBox + Jomashop)..."
echo "   Commission: 3-12%"
echo "   Priority: HIGH"
xdg-open "https://www.cj.com/" 2>/dev/null || open "https://www.cj.com/" 2>/dev/null || echo "   → Visit: https://www.cj.com/"
sleep 3

# Network 2: Impact Radius (WatchBox alternative)
echo ""
echo "📍 Opening Impact Radius (WatchBox alternative)..."
echo "   Commission: 3-6%"
echo "   Priority: MEDIUM"
xdg-open "https://impact.com/" 2>/dev/null || open "https://impact.com/" 2>/dev/null || echo "   → Visit: https://impact.com/"
sleep 3

# Network 3: AWIN (Chrono24)
echo ""
echo "📍 Opening AWIN (Chrono24)..."
echo "   Commission: 3-5%"
echo "   Priority: HIGH"
xdg-open "https://www.awin.com/gb/publishers" 2>/dev/null || open "https://www.awin.com/gb/publishers" 2>/dev/null || echo "   → Visit: https://www.awin.com/gb/publishers"
sleep 3

# Network 4: ShareASale (Bob's Watches)
echo ""
echo "📍 Opening ShareASale (Bob's Watches)..."
echo "   Commission: 4-8%"
echo "   Priority: MEDIUM"
xdg-open "https://www.shareasale.com/" 2>/dev/null || open "https://www.shareasale.com/" 2>/dev/null || echo "   → Visit: https://www.shareasale.com/"
sleep 3

# Direct Application Email Template
echo ""
echo "📧 For Luxury Bazaar (Direct Application):"
echo "   Email to: affiliate@luxurybazaar.com"
echo "   Subject: Affiliate Partnership Application - OMEGA Watch Site"
echo ""
echo "Template saved to: /tmp/luxury-bazaar-email.txt"

cat > /tmp/luxury-bazaar-email.txt << 'EOF'
To: affiliate@luxurybazaar.com
Subject: Affiliate Partnership Application - OMEGA Watch Site

Dear Luxury Bazaar Affiliate Team,

I operate a luxury watch price tracking and dealer comparison website at
http://45.61.58.125:7600 focusing on OMEGA watches.

Our platform provides:
- Historical price data for OMEGA models
- Dealer comparisons and live affiliate links
- Museum collection of high-end pieces ($1M+ collection value)
- Price tracking and arbitrage calculation tools
- Japan → U.S. arbitrage guides

I'm interested in joining your affiliate program and would like to discuss:
- Commission structure for OMEGA sales
- Custom tracking links for our dealer grid
- Bulk referral opportunities for collectors

Current platform features:
- Live dealer comparison grid
- Commission calculators
- Price history charts
- Museum collection of top 100 pieces

I believe our audience of luxury watch collectors and investors would be
highly interested in your inventory.

Please let me know the next steps for partnership.

Best regards,
[Your Name]
Website: http://45.61.58.125:7600
Email: [Your Email]
EOF

echo ""
echo "✅ All affiliate program pages opened!"
echo ""
echo "📋 Next Steps:"
echo "   1. Complete applications in each browser tab"
echo "   2. Use details from: /root/Projects/watches/AFFILIATE_SIGNUP_GUIDE.md"
echo "   3. For Luxury Bazaar, send email from: /tmp/luxury-bazaar-email.txt"
echo "   4. Track applications in AFFILIATE_SIGNUP_GUIDE.md"
echo ""
echo "💡 Website Info to Use:"
echo "   URL: http://45.61.58.125:7600"
echo "   Description: OMEGA watch price history and dealer comparison platform"
echo "   Category: Luxury Goods / Watches"
echo ""
echo "Good luck! Expected approval time: 1-7 days"