39 lines
1.2 KiB
Markdown
39 lines
1.2 KiB
Markdown
# Mautic
|
|
|
|
Mautic is an open-source marketing automation platform for managing contacts, campaigns, emails, and landing pages.
|
|
|
|
## Dependencies
|
|
|
|
- **MySQL** - Database for storing contacts and campaign data
|
|
- **SMTP** - For sending marketing emails and notifications
|
|
|
|
## Configuration
|
|
|
|
Key settings in `config.yaml`:
|
|
|
|
- **domain** - Where Mautic will be accessible
|
|
- **storage** - Persistent volume size (default: `2Gi`)
|
|
- **adminEmail** - Admin account email (defaults to your operator email)
|
|
- **db.name** - Database name (default: `mautic`)
|
|
- **smtp** - Email settings inherited from your Wild Cloud SMTP service
|
|
|
|
## First-Time Setup
|
|
|
|
1. Add and deploy the app:
|
|
```bash
|
|
wild app add mautic
|
|
wild app deploy mautic
|
|
```
|
|
|
|
2. Log in with:
|
|
- **Email**: value of `adminEmail` in your config
|
|
- **Password**: value of `adminPassword` in your `secrets.yaml`
|
|
|
|
3. Complete the onboarding wizard and configure your first email campaigns.
|
|
|
|
## Notes
|
|
|
|
- Mautic relies heavily on cron jobs for sending emails and processing campaigns — these are configured automatically in the deployment
|
|
- The `siteUrl` config must match the actual URL the app is served at, or tracking pixels and links in emails will break
|
|
- SMTP password is stored in `secrets.yaml` as `smtpPassword`
|