Adds mautic app.

This commit is contained in:
2026-06-19 21:33:11 +00:00
parent 2d0292a69b
commit 2ebbc65dd3
10 changed files with 303 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
# 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`