-- Add email_templates category in system_settings if needed INSERT INTO system_settings (key, value, category) VALUES ('email_templates_enabled', 'true', 'email') ON CONFLICT (key) DO NOTHING; -- Add email_logs table for template logs if it doesn't exist ALTER TABLE email_logs ADD COLUMN IF NOT EXISTS template_id VARCHAR(255); ALTER TABLE email_logs ADD COLUMN IF NOT EXISTS template_type VARCHAR(50); -- Create default login code template INSERT INTO system_settings (key, value, category) VALUES ( 'email_template_login_code_default', '{"name":"Login Code Template","type":"login_code","subject":"Your Login Code","content":"
","isDefault":true,"createdAt":"2025-04-29T00:00:00.000Z"}', 'email_templates' ) ON CONFLICT (key) DO NOTHING; -- Create default shipping notification template INSERT INTO system_settings (key, value, category) VALUES ( 'email_template_shipping_notification_default', '{"name":"Shipping Notification Template","type":"shipping_notification","subject":"Your Order Has Shipped!","content":"Order #{{order_id}}
Hello {{first_name}},
Good news! Your order has been shipped and is on its way to you.
Carrier: {{carrier}}
Tracking Number: {{tracking_number}}
Shipped On: {{shipped_date}}
Estimated Delivery: {{estimated_delivery}}
| Item | Qty | Price | Total |
|---|
Thank you for your purchase!
© 2025 Rocks, Bones & Sticks. All rights reserved.
Order #{{order_id}}
Hello {{first_name}},
Thank you for your order! We are processing it now and will send you another email when it ships.
Order Date: {{order_date}}
Order Total: {{order_total}}
Shipping To: {{shipping_address}}
| Item | Qty | Price | Total |
|---|
© 2025 Rocks, Bones & Sticks. All rights reserved.
Hello,
This is an automated notification to inform you that the following product is running low on stock:
Current Stock: {{current_stock}}
Threshold: {{threshold}}
You might want to restock this item soon to avoid running out of inventory.
© 2025 Rocks, Bones & Sticks. All rights reserved.
Hello {{first_name}},
Thank you for creating an account with us. We are excited to have you join our community of natural curiosity enthusiasts!
As a member, you will enjoy:
Start exploring our collections today and discover the beauty of nature!
© 2025 Rocks, Bones & Sticks. All rights reserved.