Skip to content

Latest commit

 

History

History
72 lines (56 loc) · 1.7 KB

File metadata and controls

72 lines (56 loc) · 1.7 KB

send-emails/ │ ├── Assets/ │ ├── css/ │ │ └── admin.css │ └── js/ │ └── admin.js │ ├── Includes/ │ ├── Admin/ │ │ └── class-sendemails-admin.php │ └── Cron/ │ └── class-sendemails-cron.php │ ├── src/ │ ├── class-sendemails-template.php │ └── class-sendemails-campaign.php │ ├── Uninstall.php ├── composer.json ├── package.json └── send-emails.php

🔧 Feature Architecture (Balanced for Email + Data Intelligence)

Send Emails:

  • Dashboard
  • Campaigns (Email Campaigns)
  • Contacts/Emails (List of emails/contacts)
  • Automation
  • Forms
  • Settings Having integration with WooCommerce and EDD for increasing Sales by handling the customers, orders, and related features.

Here’s how you can structure your modules strategically:

  1. Dashboard

Overview of campaigns, automations, and performance. Metrics like open/click rate, conversions, total sales from emails.

  1. Campaigns

Create one-time or recurring campaigns. Send to lists, tags, or advanced segments (using Woo/EDD data).

  1. Contacts

List of subscribers with enriched info: name, email, total spent, products purchased, etc. Filters and segments (e.g., VIP customers, frequent buyers, inactive users).

  1. Automations

Triggered by: New order (Woo/EDD) Abandoned cart Subscription renewal Signup via form Specific tag added Actions: send email, apply tag, wait, conditional logic, etc.

  1. Forms

Embed or popup forms for capturing new leads. Assign tags or start automation automatically.

  1. Settings

SMTP/Email API integrations. WooCommerce & EDD integration controls. Tracking (UTMs, open/click tracking).