Double Opt-In vs Single Opt-In: Which to Choose
Compare single and double opt-in signup flows, understand the GDPR implications, and learn when each approach makes sense for your email program.
The most important rule in email marketing: only import contacts who have given explicit permission to receive email from you.
Importing a purchased list, scraped contacts, or people who gave their email for a different purpose (a raffle, a one-time download) without ongoing marketing consent violates:
Before importing, confirm each contact either:
AcelleMail accepts standard CSV (comma-separated values) files with UTF-8 encoding.
Minimum required columns:
email,first_name,last_name
john@example.com,John,Smith
jane@example.com,Jane,Doe
Full-featured import with custom fields:
email,first_name,last_name,company,phone,plan_type,subscribed_date
john@example.com,John,Smith,Acme Corp,+1-555-0100,pro,2025-01-15
jane@example.com,Jane,Doe,Widget Inc,+1-555-0200,free,2025-03-20
CSV formatting rules:
"Smith, Jr."YYYY-MM-DDClean your CSV before importing to avoid polluting your list:
// Simple PHP cleaning script
$rows = array_map('str_getcsv', file('subscribers.csv'));
$headers = array_shift($rows);
$cleaned = [];
$seen = [];
foreach ($rows as $row) {
$data = array_combine($headers, $row);
$email = strtolower(trim($data['email']));
// Skip invalid emails
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) continue;
// Skip duplicates
if (isset($seen[$email])) continue;
$seen[$email] = true;
// Skip role addresses
$prefix = explode('@', $email)[0];
if (in_array($prefix, ['info', 'admin', 'support', 'noreply', 'webmaster'])) continue;
$data['email'] = $email;
$cleaned[] = $data;
}
// Write cleaned CSV
$output = fopen('subscribers_cleaned.csv', 'w');
fputcsv($output, $headers);
foreach ($cleaned as $row) fputcsv($output, $row);
fclose($output);
echo "Cleaned: " . count($cleaned) . " records (removed " . (count($rows) - count($cleaned)) . " invalid/duplicate)";
Map your CSV columns to AcelleMail fields:
| CSV Column | AcelleMail Field |
|---|---|
email |
Email (required) |
first_name |
First Name |
last_name |
Last Name |
company |
Custom field: COMPANY |
plan_type |
Custom field: PLAN_TYPE |
subscribed_date |
— (log externally, not directly importable) |
Any CSV column without a mapping is ignored — you won't lose data, it just won't be stored.
AcelleMail offers three options for duplicate emails:
| Option | Behavior |
|---|---|
| Skip | Existing subscribers are unchanged |
| Update | Existing subscriber fields are overwritten with CSV data |
| Unsubscribe then re-subscribe | Use with caution — removes existing data |
Recommendation: Use Update when re-importing from your CRM to refresh field values. Use Skip for a first-time import where you don't want to overwrite existing data.
After import completes, AcelleMail generates an import report:
Download the error report to see which emails failed and why. Common errors:
@, extra spaces)Verification steps:
A careful import process protects your sender reputation and ensures your new subscribers have a great first experience with your emails.
Compare single and double opt-in signup flows, understand the GDPR implications, and learn when each approach makes sense for your email program.
A dirty email list harms your sender reputation and inbox placement. Learn how to remove bounces, verify email addresses, and re-engage inactives systematically.
Reduce unsubscribes and improve satisfaction by giving subscribers control over what they receive and how often. Build a preference center that works.
Create powerful subscriber segments based on behavior, demographics, and engagement to send targeted emails.
Design high-converting signup forms with the right fields, placement strategies, and pop-up timing to grow your AcelleMail list quickly.
Reduce unsubscribes and improve satisfaction by giving subscribers control over what they receive and how often. Build a preference center that works.
Compare single and double opt-in signup flows, understand the GDPR implications, and learn when each approach makes sense for your email program.
AcelleMail is the self-hosted email marketing platform you control end-to-end.
View Pricing