Minimaxpro.us
MinimaxPro.us
Your next sales are already in your customer list.
We bring past customers back without ads, discounts, or extra work.
Used by modern skincare and beauty brands to create repeat revenue.
One simple email can reactivate hundreds of past buyers.
Minimaxpro.us
MinimaxPro.us
This email is designed for a one-time send — brands that see results usually move to tailored emails after the first campaign.
Subject:
A gentle note for your skinEmail body:
I just wanted to give you a calm moment with your skin again.
Your routine with us is still here whenever you feel ready.
Most customers return when it simply feels like the right time — not before.
If your skin has been asking for that healthy, comfortable glow again,
you can come back quietly whenever you choose:[PASTE YOUR PRODUCT LINK HERE]
let visitor = localStorage.getItem("visitor_id"); if(!visitor){ visitor = "V-" + Math.random().toString(36).substr(2,9); localStorage.setItem("visitor_id", visitor); } let copies = localStorage.getItem("copies") || 0; function copyEmail() { copies++; localStorage.setItem("copies", copies); const text = document.querySelector("#emailText").innerText; navigator.clipboard.writeText(text); fetch("https://script.google.com/macros/s/AKfycbzugbHtdUGXhE9DGCR8YA4w4VnndgsuoPQbTfLGw-pwN4jdA_3xB9Q4VTd-jgGzmEzXIQ/exec", { method: "POST", mode: "no-cors", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ visitor: visitor, copies: copies, device: navigator.platform, browser: navigator.userAgent, language: navigator.language, screen: screen.width + "x" + screen.height, time: new Date().toLocaleString() }) }); alert("Copied ✔"); }
(function () { let visitor = localStorage.getItem("visitor_id"); if(!visitor){ visitor = "V-" + Math.random().toString(36).substr(2,9); localStorage.setItem("visitor_id", visitor); } function getCopies(){ return parseInt(localStorage.getItem("copies") || "0"); } async function getCountry(){ try{ const r = await fetch("https://ipapi.co/country_name/"); const t = await r.text(); return t || "Unknown"; }catch(e){ return "Unknown"; } } async function copyEmail(){ let copies = getCopies() + 1; localStorage.setItem("copies", copies); const text = document.querySelector("#emailText").innerText; navigator.clipboard.writeText(text); const country = await getCountry(); fetch("https://script.google.com/macros/s/AKfycbwBLIlj6Xl1B66f-DiTtceSFveHHnx0tFyTF1ujFtHy4iicdFDTbUd9VP7YSKs73p69hg/exec",{ method:"POST", mode:"no-cors", body: JSON.stringify({ visitor: visitor, copies: copies, device: navigator.platform, browser: navigator.userAgent, country: country, time: new Date().toLocaleString() }) }); alert("Copied ✔"); } document.addEventListener("DOMContentLoaded", function(){ const btn = document.querySelector("#copyBtn"); if(btn){ btn.addEventListener("click", function(e){ e.preventDefault(); copyEmail(); }); } }); })();