Quick Start
Send your first automated email in 5 minutes.
1. Import Contacts
Before you can send emails, you need an audience. You can add contacts manually or import a CSV.
- Navigate to the Contacts page.
- Click the Import CSV button.
- Upload your CSV file (make sure it has an
emailcolumn). - Map the columns to AutoMail's fields and confirm import.
2. Create an Email Template
Design the email you want to send. Our AI builder makes this easy.
- Go to Email Templates.
- Click New Template.
- Use the AI Chat to generate content (e.g., "Write a welcome email for new users").
- Insert personalization variables like
{{first_name}}to make it dynamic. - Click Save Template.
3. Build an Automation
Connect your trigger to your email template.
- Navigate to Automations.
- Create a new automation and give it a name (e.g., "Welcome Sequence").
- Select a Trigger. For testing, choose "Webhook" (Automatic).
- Add a new step and select Send Email.
- Choose the template you created in Step 2.
- Save and Activate the automation.
4. Test It
Trigger the automation to see it in action.
If you chose "Webhook" ensuring you have the URL:
curl -X POST https://automailai.vercel.app/api/webhooks/YOUR_TOKEN \
-H "Content-Type: application/json" \
-d '{ "email": "you@example.com", "first_name": "Developer" }'Check your inbox! You should receive the personalized welcome email.