How to Install Mautic Marketing Automation Software on Ubuntu 22.04
This tutorial will be showing you how to set up Mautic email marketing platform on Ubuntu 22.04 with Apache or Nginx web server. Mautic is a free open source alternative to commercial email service providers like MailChimp.
Mautic Features
- Lead nurturing and tracking
- Marketing campaigns
- Dripflow programs
- Modern email and landing page builder (responsive design, drag & drop blocks, MJML templates).
- A/B testing for emails and landing pages.
- Create segments for any list based on any conditions you define (country, state, city, timezone, device type, device OS, points, visited URL, etc)
- You can organize and categorize segments.
- Automatically ad contacts via API
- Social media monitoring
- Install plugins to extend the functionality of Mautic.
- Mautic can be easily integrated with third-party SMTP relay services like Gmail, Mandrill, Sendgrid, Amazon SES. You can also use your own mail server.
- Can integrate with many popular third-party apps like Twilio, Pipedrive, Salesforce, Gmail, Facebook, Instagram, Twitter, GoToMeeting, Hubspot, SugarCRM, MailChimp, Zoho CRM, Zapier, and many more.
- Automatic bounce handling via IMAP, so you don’t have to manually remove nonexistent email addreses.
- Send reports to your email.
- The From: address can be customized on a per-email basis.
- Progressive profiling for forms (queue unlimited fields, show only a specified number of fields, set a field to always show even if the value is known).
- Supports multiple user accounts and roles.
- And much more
Benefits of Self Hosting Email Marketing Platform
Why do you want to self-host email marketing platform instead of using third-party ESPs (Email Service Provider) like MailChimp?
For starters, self-hosting can save you a lot of money. Mautic is free and open-source software. You only need to pay $26/month for the VPS (virtual private server), which can run a full-featured mail server and the Mautic email marketing platform. It can easily handle millions of subscribers. So your total cost is always $26/month no matter how many subscribers you have. If you own millions of subscribers on MailChimp, the cost would be thousands of dollars per month.
Another reason is that the Firefox browser blocks third-party trackers (cross-site tracking) by default, so the MailChimp signup widget on your website may not work properly and the MailChimp pop-up won’t be shown to your visitors. By hosting the email marketing platform under your own domain name, Firefox doesn’t block the tracker, so your signup widget or popup can work properly. This is also true if users of other web browsers decide to block third-party trackers.
In addition, you can manipulate subscribers’ information from the database and even automate it with a Cron job. For example, I often see there are typos when a visitor enters information on the sign-up form. I use a cron job to automatically correct some common typos.
Last but not least, self-hosting can protect your freedom of speech. You never need to worry about an email service provider closing your account like Mailchimp did.
Challenges of Self Hosting Email Marketing Platform
The first problem you face is finding a good self-hostable email marketing platform. Previously we have discussed how to set up Mailtrain, which is an open-source alternative to MailChimp, on Ubuntu 22.04 server. However, Mailtrain is missing several features a typical site owner would like to have.
- Mailtrain doesn’t provide users with an easy way to insert signup widget or popup on the website.
- Users can’t set time schedule for RSS campaigns.
- No contact rating.
After all, Mailtrain is just a project of a handful of software developers.
Mautic, on the other hand, is a project of a team of developers and has developed more and more features over the years. You do have an easy way to insert signup widget and popup on your website with Mautic. There’s also a vibrant and very active community around it. Furthermore, Mautic is more than just a newsletter/email marketing platform. It’s a full-blown digital experience platform, as they call it. With Acquia (which is a company offering paid service for the Drupal open source content management system) acquiring Mautic in May 2019, the future for Mautic has never been brighter. So I feel it’s time to switch from Mailtrain to Mautic.
The second challenge is to have the technical expertise to set up the email marketing platform on your own server. Don’t worry, I will show you how in just a few moments.
The third challenge is that you need to have a good reputation for the IP address of your mail server and your domain name as well. Otherwise, your emails will land in the spam folder. Gmail Postmaster Tools can show you if you have a good reputation for your domain name and IP address. As you can see from the screenshot below, I always have high domain reputation with Gmail, because I always follow best practices to send emails to my subscribers. It’s very rare that my subscribers report my email as spam.
To send out bulk emails, you need to follow these rules or practices.
- Make sure the recipient gave you permission to send email. Use double opt-in to verify the subscriber’s email address.
- Don’t send cold emails to thousands of people who have never received emails from you before. Instead, you need to warm up your IP address. For example, send 500 emails on day 1, then send 1000 emails on day 2, send 2000 emails on day 3.
- Include your contact information and your mailing address at the bottom of the email message.
- Personalize the email message as much as possible. For example, include the recipient’s name in the email.
- Conform to CAN-SPAM Act
- Avoid large attachments.
- Clean your email list. For example, delete email subscribers that haven’t opened your email in the last 30 days.
- Get approved as Return Path Certified Sender.
- Test your email placement with GlockApps.
- Use multiple IP addresses to spread email traffic so you will have better email deliverability.
It’s also highly recommended to improve your IP/domain reputation before sending bulk emails. Now let’s look at how to install Mautic on Ubuntu 22.04 server.
Prerequisites for installing Mautic on Ubuntu 22.04 Server
If you don’t have your own mail server yet, I recommend using the free iRedMail program to quickly set up your own mail server before installing Mautic, so you don’t have to spend money on a commercial SMTP relay service.
Mautic is written in PHP and relies on MySQL/MariaDB database server. So you need to set up a LAMP stack or LEMP stack. If you prefer Apache web server, then set up LAMP stack.
If you prefer Nginx web server, then set up LEMP stack.
Note that iRedMail will automatically set up a LEMP stack for you, so if you are going to install Mautic on your iRedMail server, you don’t need to set up LEMP stack again.
You also need a domain name. I registered my domain name from NameCheap because the price is low and they give whois privacy protection free for life. Without further ado, let’s install Mautic on Ubuntu 22.04 server.
Step 1: Download Mautic onto Your Ubuntu 22.04 Server
Download the latest stable version by executing the following command on your server.
wget https://github.com/mautic/mautic/releases/download/4.4.1/4.4.1-update.zip
Install the unzip
utility and unzip it to /var/www/mautic/
directory.
sudo apt install unzip sudo mkdir -p /var/www/mautic/ sudo unzip 4.4.1-update.zip -d /var/www/mautic/
Then make the web server user (www-data
) as the owner of this directory.
sudo chown -R www-data:www-data /var/www/mautic/
Step 2: Create a MariaDB Database and User for Mautic
Log in to MariaDB console.
sudo mysql -u root
Next, create a new database for Mautic using the following command. This tutorial names it mautic
, you can use whatever name you like for the database.
CREATE DATABASE mautic DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
The following command will create a database user and password, and at the same time grant all permission of the new database to the new user so later on Mautic can write to the database. Replace red texts with your preferred database name, username and password.
GRANT ALL ON mautic.* TO 'mauticuser'@'localhost' IDENTIFIED BY 'mautic_password';
Flush privileges table and exit MariaDB console.
FLUSH PRIVILEGES; EXIT;
Step 3: Install Required and Recommended PHP Modules.
Run the following command to install PHP modules required or recommended by Mautic. Mautic currently doesn’t support PHP8.1, so we need to use a PPA to install PHP 8.0.
sudo apt install software-properties-common sudo add-apt-repository ppa:ondrej/php -y sudo apt update sudo apt install php-imagick php8.0-fpm php8.0-mysql php8.0-common php8.0-gd php8.0-imap php8.0-imap php8.0-curl php8.0-zip php8.0-xml php8.0-mbstring php8.0-bz2 php8.0-intl php8.0-gmp
If you use Apache web server, then you need to disable the PHP module for Apache.
sudo a2dismod php8.0
You also need to disable the prefork MPM module in Apache.
sudo a2dismod mpm_prefork
Now you need to run the following command to enable three modules in order to use PHP-FPM in Apache, regardless of whether mod_php
is installed on your server.
sudo a2enmod mpm_event proxy_fcgi setenvif
Then restart Apache.
sudo systemctl restart apache2
Next, we need to make custom configurations to PHP-FPM. The config file is /etc/php/8.0/fpm/php.ini
file. However, it’s better to create a custom local config file (60-custom.ini
), so our custom configs won’t be overridden when upgradeing PHP to a new version.
sudo nano /etc/php/8.0/fpm/conf.d/60-custom.ini
Add the following lines in this file.
# Default is 128M. Set it to 512M for better performance. memory_limit = 512M # Set default timezone in PHP. You can find your own time zone format at https://www.php.net/manual/en/timezones.php date.timezone = America/New_York # Set the max file upload size in PHP upload_max_filesize = 256M post_max_size = 256M # Change session lifetime to avoid the CSRF token error. session.gc_maxlifetime = 14400 ; The OPcache shared memory storage size. opcache.memory_consumption=256 ; The amount of memory for interned strings in Mbytes. opcache.interned_strings_buffer=32
Save and close the file. Then reload PHP8.0-FPM.
sudo systemctl reload php8.0-fpm
Step 4: Create Apache Virtual Host or Nginx Config File for Mautic
Apache
If you use Apache web server, create a virtual host for Mautic.
sudo nano /etc/apache2/sites-available/mautic.conf
Put the following text into the file. Replace mautic.example.com
with your real domain name and don’t forget to set DNS A record for it.
<VirtualHost *:80>
ServerName mautic.example.com
DocumentRoot /var/www/mautic/
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/mautic/>
Options FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
Save and close the file. Then enable this virtual host with:
sudo a2ensite mautic.conf
Reload Apache for the changes to take effect.
sudo systemctl reload apache2
Now you should be able to see the Mautic web-based install wizard at http://mautic.example.com/installer
.
Nginx
If you use Nginx web server, create a virtual host for Mautic.
sudo nano /etc/nginx/sites-enabled/mautic.conf
Put the following text into the file. Replace mautic.example.com
with your real domain name and don’t forget to create DNS A record for it. Also note that if you install Mautic on iRedMail server, you should use the TCP socket (127.0.0.1:9999
) instead of the Unix socket (unix:/run/php/php8.0-fpm.sock
).
server { listen 80; listen [::]:80; server_name mautic.example.com; root /var/www/mautic; error_log /var/log/nginx/mautic.error; access_log /var/log/nginx/mautic.access; client_max_body_size 256M; index index.php index.html index.htm index.nginx-debian.html; location / { # try to serve file directly, fallback to app.php try_files $uri /index.php$is_args$args; } location ~ /(mtc.js|1.js|mtracking.gif|.*\.gif|mtc) { # default_type "application/javascript"; try_files $uri /index.php$is_args$args; } # redirect some entire folders rewrite ^/(vendor|translations|build)/.* /index.php break; location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php8.0-fpm.sock; #Note: If you install Mautic on iRedMail server, you should use the TCP socket instead. #fastcgi_pass 127.0.0.1:9999; } location ~* ^/index.php { # try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini fastcgi_pass unix:/var/run/php/php8.0-fpm.sock; #Note: If you install Mautic on iRedMail server, you should use the TCP socket instead. #fastcgi_pass 127.0.0.1:9999; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; fastcgi_buffer_size 128k; fastcgi_buffers 256 16k; fastcgi_busy_buffers_size 256k; fastcgi_temp_file_write_size 256k; } # Deny everything else in /app folder except Assets folder in bundles location ~ /app/bundles/.*/Assets/ { allow all; access_log off; } location ~ /app/ { deny all; } # Deny everything else in /addons or /plugins folder except Assets folder in bundles location ~ /(addons|plugins)/.*/Assets/ { allow all; access_log off; } # location ~ /(addons|plugins)/ { deny all; } # Deny all php files in themes folder location ~* ^/themes/(.*)\.php { deny all; } # Don't log favicon location = /favicon.ico { log_not_found off; access_log off; } # Don't log robots location = /robots.txt { access_log off; log_not_found off; } # Deny yml, twig, markdown, init file access location ~* /(.*)\.(?:markdown|md|twig|yaml|yml|ht|htaccess|ini)$ { deny all; access_log off; log_not_found off; } # Allow access to certbot directory in order to obtain TLS certificate location ~ /.well-known/acme-challenge { allow all; } # Deny all attempts to access hidden files/folders such as .htaccess, .htpasswd, .DS_Store (Mac), etc... location ~ /\. { deny all; access_log off; log_not_found off; } # Deny all grunt, composer files location ~* (Gruntfile|package|composer)\.(js|json)$ { deny all; access_log off; log_not_found off; } # Deny access to any files with a .php extension in the uploads directory location ~* /(?:uploads|files)/.*\.php$ { deny all; } # A long browser cache lifetime can speed up repeat visits to your page location ~* \.(jpg|jpeg|gif|png|webp|svg|woff|woff2|ttf|css|js|ico|xml)$ { access_log off; log_not_found off; expires 360d; } }
Save and close the file. Then test Nginx configuration.
sudo nginx -t
If the test is successful, reload Nginx for the changes to take effect.
sudo systemctl reload nginx
Now you should be able to see the Mautic web-based install wizard at http://mautic.example.com/installer
.
Step 5: Enabling HTTPS
To encrypt the HTTP traffic, we can enable HTTPS by installing a free TLS certificate issued from Let’s Encrypt. Run the following command to install Let’s Encrypt client (certbot) on Ubuntu 22.04 server.
sudo apt install certbot
Make sure the .well-known/acme-challenge/
directory exists and www-data
is the owner.
sudo mkdir -p /var/www/mautic/.well-known/acme-challenge sudo chown www-data:www-data /var/www/mautic/.well-known/acme-challenge
If you use Nginx, then you also need to install the Certbot Nginx plugin.
sudo apt install python3-certbot-nginx
Next, run the following command to obtain and install TLS certificate.
sudo certbot --nginx --agree-tos --redirect --hsts --staple-ocsp --email [email protected] -d mautic.example.com
If you use Apache, install the Certbot Apache plugin.
sudo apt install python3-certbot-apache
And run this command to obtain and install TLS certificate.
sudo certbot --apache --agree-tos --redirect --hsts --staple-ocsp --email [email protected] -d mautic.example.com
Where
--nginx
: Use the nginx plugin.--apache
: Use the Apache plugin.--agree-tos
: Agree to terms of service.--redirect
: Force HTTPS by 301 redirect.--hsts
: Add the Strict-Transport-Security header to every HTTP response. Forcing browser to always use TLS for the domain. Defends against SSL/TLS Stripping.--staple-ocsp
: Enables OCSP Stapling. A valid OCSP response is stapled to the certificate that the server offers during TLS.
The certificate should now be obtained and automatically installed.
If you encounter the following error, then you can try using the webroot plugin to obtain TLS certificate.
IMPORTANT NOTES: - The following errors were reported by the server: Domain: mautic.your-domain.com Type: unauthorized Detail: Invalid response from http://mautic.your-domain.com/.well-known/acme-challenge/oPobDrRkFbimsOD5Jbcx2VQfbMh9Hv3VueNhKdyhbcg [xx.xx.xx.xx]: "<html>\r\n<head><title>404 Not Found</title></head>\r\n<body>\r\n<center><h1>404 Not Found</h1></center>\r\n<hr><center>nginx</center>\r\n" To fix these errors, please make sure that your domain name was entered correctly and the DNS A/AAAA record(s) for that domain contain(s) the right IP address.
Nginx web server with webroot plugin
sudo certbot --webroot -w /var/www/mautic -i nginx --agree-tos --redirect --hsts --staple-ocsp --email [email protected] -d mautic.example.com
Apache web server with webroot plugin
sudo certbot --webroot -w /var/www/mautic -i -apache --agree-tos --redirect --hsts --staple-ocsp --email [email protected] -d mautic.example.com
Step 6: Launch the Web-based Setup Wizard in Web Browser
Now in your browser address bar, type in your domain name for Mautic to access the web install wizard.
https://mautic.your-domain.com/installer
or
https://mautic.your-domain.com/index.php/installer
Click Next Step. If you see the following warning, it means you need to increase the PHP memory limit as described earlier.
The memory_limit setting in your PHP configuration is lower than the suggested minimum limit of 512M. Mautic can have performance issues with large datasets without sufficient memory.
In step 1, enter the MariaDB/MySQL database details. For security reasons, you can add a database table prefix in this step. You can use a short random character as the table prefix such as 6aC8_
. It’s recommended to end the prefix with an underscore _
.
If you encounter the following error:
An error occured while attempting to add default data: There's no active transaction.
You need to change the database driver from MySQL PDO to MySQLi.
In step 2, create an admin account for the Mautic web interface.
In step 3, configure email settings. You have many options in mailer transport. You can use PHP Mail
, sendmail
, or Gmail
or integrate Mautic with third-party email services like Mandrill
, Sendgrid
, Amazon SES
, etc. These settings can always be changed after installation in Mautic configurations page. If Mautic is installed on your mail server, then you need to choose Sendmail
as the mailer transport, so Mautic will use your own mail server to send email. Email handling should be set to Send immediately, so transactional emails will be sent immediately and marketing emails will be queued.
If Mautic and your mail server are running on different hosts and you want Mautic to send emails via your mail server, then you need to choose Other SMTP server
as mailer transport. Then
- Enter the hostname of your mail server
- Choose port 587
- Choose TLS encryption.
- Choose Plain as the authentication mode.
- Enter the login credential of an email address on your mail server.
After step 3 is done, you can log into Mautic dashboard.
If you see the 500 internal server error, please check Mautic logs, which can be found in /var/www/mautic/app/logs/
directory. If you forgot your Mautic database password, you can find it in the /var/www/mautic/app/config/local.php
file.
Step 7: Enable HTTP2 to Improve Performance
You can enable HTTP2 protocol to improve page loading performance for Mautic.
Apache
First, you need to enable the HTTP2 module.
sudo a2enmod http2
Then open the SSL virtual host file.
sudo nano /etc/apache2/sites-enabled/mautic-le-ssl.conf
Put the following directive after the opening <VirtualHost *:443>
tag.
Protocols h2 http/1.1
Save and close the file. Then restart Apache for the changes to take effect.
sudo systemctl restart apache2
Nginx
To enable HTTP2 protocol in Nginx virtual host, find the following line.
listen 443 ssl; # managed by Certbot
Simply add http2
after ssl
.
listen 443 ssl http2; # managed by Certbot
Save and close the file. Then reload Nginx.
sudo systemctl reload nginx
Step 8: Install the RSS To Email Plugin
For many site owners, the ability to automatically fetch content from RSS feed and send it to subscribers is a must. Mautic doesn’t support this feature natively, but you can install a plugin to implement this feature. The plugin costs $9.95. It’s a one-time payment. You will recieve free updates for life. Go to https://mauticapps.com/ to purchase.
After making a payment, you can download the plugin.
Then upload this plugin to the /var/www/mautic/plugins/
directory.
Next, go to the Mautic plugins directory.
cd /var/www/mautic/plugins/
Unzip the archive.
sudo unzip MauticRssToEmailBundle.zip
Clear the Mautic cache.
sudo -u www-data php8.0 /var/www/mautic/bin/console cache:clear
In the Mautic dashboard, click the gear icon on the upper-right corner and select plugins
. Click the Install/Upgrade plugins
button and the Mautic RSS to Email plugin will show up in the plugin list.
Step 9: Add Cron Jobs
Mautic relies on Cron jobs to update mailing list segments, email marketing campaigns, campaign events and process email queues. Edit the www-data user’s crontab file. (You should not add Mautic commands in root user’s crontab file.)
sudo -u www-data crontab -e
And add Mautic Cron jobs like below.
###### Mautic Cron Jobs ####### # update segments every minute * * * * * php8.0 /var/www/mautic/bin/console mautic:segments:update > /dev/null # update campaigns every 15 minutes starting with an offset of 5 minutes at the beginning of each hour 5-59/15 * * * * php8.0 /var/www/mautic/bin/console mautic:campaigns:update > /dev/null # execute campaigns events every 15 minutes with an offset of 10 minutes 10-59/15 * * * * php8.0 /var/www/mautic/bin/console mautic:campaigns:trigger > /dev/null # process email queue 2-59/15 * * * * php8.0 /var/www/mautic/bin/console mautic:emails:send > /dev/null # import list in the background * * * * * php8.0 /var/www/mautic/bin/console mautic:import > /dev/null # Fetch bounce messages @hourly php8.0 /var/www/mautic/bin/console mautic:email:fetch # update MaxMind GeoLite2 IP Database once a week @weekly php8.0 /var/www/mautic/bin/console mautic:iplookup:download > /dev/null
When you have a transactional email campaign that needs to send emails immediately, then you should add a line like the below to execute the campaign every minute.
# execute transactional campaign every minute.
* * * * * php8.0 /var/www/mautic/bin/console mautic:campaign:trigger -i campaign_id > /dev/null
You can find the campaign ID in Mautic after you create a campaign.
You can also execute the transactional email campaign every 30 seconds like so:
# Execute this campaign every 30 seconds * * * * * php8.0 /var/www/mautic/bin/console mautic:campaign:trigger -i campaign_id > /dev/null * * * * * ( sleep 30; php8.0 /var/www/mautic/bin/console mautic:campaign:trigger -i campaign_id > /dev/null )
Save and close the file.
Note that Mautic cron jobs may use a fair amount of CPU and RAM resources. If Mautic and iRedMail are installed on a server with 2GB RAM, you should not deploy additional programs on the server, or you can choose to upgrade the server specs.
Step 10: Download IP Lookup Database
In order to know the subscriber’s geolocation, you need to download MaxMind’s free GeoLite2 IP lookup database.
First, you need to create an account at MaxMind. Maxmind will send you an email. Click the link in the email to set a password, then log in to your MaxMind account. Next, select My License Key
on the left bar.
Click the Generate New License Key button.
Give your license key a name. Then choose No
, because we don’t need to use the geoipupdate
program. Then click the Confirm
button.
Once the license key is created, copy the license key. Go to Mautic dashboard, click the cog icon on the upper right corner and select configuration
. In the System settings
tab, scroll down to Miscellaneous Settings
.
- Select Maxmind GeoLite2 City Download for the IP lookup service
- In the
IP lookup service authentication
field, enter your Maxmind email address and Maxmind license key like this:[email protected]:JNQEpLFM8OCudQ==
You need to use a colon as the delimiter.
Next, Click the Fetch IP Lookup Data Store button. Finally, click the Apply button on the upper-right corner.
Step 11: Install the Tracking JavaScript
In the tracking settings
tab, you can find a code snippet that you can add to your website for tracking visitors. If you use WordPress, then copy this code snippet and paste it in the footer.php
file under the WordPress theme folder.
Note that you need to go to the System settings tab, and add your website’s address in the CORS settings for the tracking JavaScript to work.
While you are at it, you should also set the default timezone on this page.
Click the Apply button. Note: I found that I need to wait sometime for the timezone setting to take effect. You can clear Mautic cache with the following command for the timezone setting to take effect immediately.
sudo rm /var/www/mautic/app/cache/* -rf
To check if it’s working, you can use another device to visit your website, then go to the Mautic dashboard. If it’s working, there should be new page visits displayed on the dashboard.
Importing Contacts to Mautic
Check out the Mautic contact import page. Go to the Contacts
tab and select import
from the dropdown menu. When importing contacts from a CSV file, you can choose the contact owner, contact segment, and tags. You can also match the CSV file column with the existing Mautic contact fields.
Please note that when importing a large list (more than one thousand contacts) to Mautic, you should choose import in the background instead of importing in the browser. That’s because the default PHP maximal execution time is 30 seconds, but importing a large list can take several minutes, so it will be stopped by the PHP limit if you choose to import in the browser. However, you should not close the Mautic tab in your web browser while it’s importing contacts.
You can refresh the importing page to check the process. If the importing process appears to be not making any progress then you can try importing it from the command line. It may give you some clue why it’s not making progress.
sudo -u www-data php8.0 /var/www/mautic/bin/console mautic:import
- A column in the CSV file should not contain too many characters (no longer than 170 characters, I think), or the import can fail and the error “There was a database error: The EntityManager is closed” will be shown in the command line.
- A Mautic field may have a certain format and doesn’t allow random characters. For example, if your CSV file has an IP address column, then make sure this column only contains IP addresses. If the CSV file has a website field, then make sure this column only contains website addresses. Mixing them together may cause the import to fail.
If you want to temporarily stop the import process, simply toggle the unpublish button.
By default, Mautic imports 100 contacts per script execution. If you want to change this number, edit the Crontab file.
sudo -u www-data crontab -e
Find the following line,
* * * * * php8.0 /var/www/mautic/bin/console mautic:import > /dev/null
Change it to:
* * * * * php8.0 /var/www/mautic/bin/console mautic:import --limit=200 > /dev/null
This makes Mautic import 200 contacts per script execution.
How to Send Emails in Mautic
In Mautic, you can use 3 types of email campaigns:
- automated campaign: for marketing automation
- Manual campaign: broadcast emails to a whole segment
- RSS campaign: If you installed the RSS to Email plugin
In Mautic, there’s no such concept as an email list. You need to import contacts and group them into segments.
How to Create an Automated Campaign (Marketing Automation)
- Go to the
Contacts
tab and import your contacts to Mautic. - Go to the
Segment
tab to create a segment - Add the contacts into the segment.
- Go to
Channels
->Email
and create the template emails that you want to send to subscribers. - Go to the
Campaigns
tab to create a campaign. The campaign builder allows you to create automated campaigns. Assign a segment to the campaign. - Publish the campaign and you are done. Wait for the Emails to be sent.
How to Create Manual Campaign (Broadcast Emails)
Go to Channels
-> Email
, click the New
button to create a new Segment Email.
- Segment Emails can be sent manually (broadcast)
- Template emails can not be sent manually. They are used with automated campaigns.
Once the segment email is created, you can click the send button to broadcast the emails to your subscribers.
Hint: If a manual campaign stalls for some time, you can reload the campaign page. Mautic will send emails to the remaining pending contacts. If you have lots of contacts, I don’t recommend creating a manual campaign, because you need to stay on the campaign page to monitor the progress. I always recommend creating automated campaigns.
How to Integrate with Twilio SMS Marketing
Twilio allows you to programmatically make and receive phone calls, send and receive text messages using its web service APIs. Go to Twilio.com to create an account (You will get $15.50 trial credit). Then go to Mautic Settings
-> Plugins
. Click the Install/Upgrade Plugins
button. The Twilio plugin will show up. Click on it. Then
- Change the published status from No to Yes.
- Enter your Twilio account SID
- Enter your Twilio Auth Token
- Go to your Twilio account to get a trial phone number, copy the number and paste it to the Sending Phone Number field in Mautic.
Click the Save & close
button. Now if you create a campaign in the campaign builder, you have the option to send SMS text messages.
And you have a new item called text messages
under the channels
tab.
Note that phone numbers stored in Mautic should have the + sign with the contact’s country code like +44. If there’s no + sign, Mautic will automatically add the US country code (+1).
How to Handle SMS Subscriptions
If you a user don’t want to receive your SMS messages, you need to allow the user to unsubscribe from your SMS campaign. This can be achieved via the Mautic SMS reader plugin. To install this plugin, run
cd /var/www/mautic/plugins/ sudo git clone https://github.com/nebev/mautic-sms-reader.git sudo mv mautic-sms-reader SmsreaderBundle
Clear the Mautic application cache.
sudo -u www-data php8.0 /var/www/mautic/bin/console cache:clear
Then go to Mautic Settings
-> Plugins
. Click the Install/Upgrade Plugins
button. The Smsreader
plugin will show up. Next, log out and log back in. You will see the Twilio SMS Reader
menu item in Settings. Enter your Twilio Account SID and the unsubscribe/re-subscribe keywords.
Unable to Send SMS?
If Mautic is unable to send SMS, and you see the following error message in the Cron job.
PHP Warning: Use of undefined constant CURLOPT_URL - assumed 'CURLOPT_URL'
It’s because your server is missing the PHP CURL extension. You can fix this error with the following command.
sudo apt install php8.0-curl
Automatic Bounce Handling
You can use the Monitored Inbox feature in Mautic to automatically remove email address from Mautic. Go to Mautic configuration
-> Email settings
-> Monitored Inbox
. Enter your mailbox login credentials, then test connection and fetch folders.
Once the connection is successful, you can select the folder to monitor for bounce messages. Note that you need to create the folder as a sub-foler of the main inbox
folder in your mailbox, otherwise you might see “the value is not valid
” error when selecting the folder to check. If you use the Roundcube webmail, you can go to the Roundcube settings
-> Folders
to create the sub folder (Inbox.bounces).
Then Mautic will allow you to choose the INBOX.bounces
as the folder to check. Click the Save and close
button. In Roundcube, you can create a filter to automatically put bounce messages into the Inbox.bounces folder. The filter rule is as follows:
- Subject contains “Undelivered Mail Returned to Sender”
- To contains “[email protected]”
Next, you can run the following command on your server, so Mautic can fetch the bounce messages from the mailbox.
sudo -u www-data php8.0 /var/www/mautic/bin/console mautic:email:fetch
This command is already in the Cron jobs, so you don’t have to run it manually every day.
By default, bounced email addresses won’t be automatically remove from Mautic, but will be labeled as Do not Contact
, so Mautic won’t send emails to those addreses. If you want to remove them, you can create a segment called bounced emails
with the filter Bounce - Email equals Yes
.
Segment will be updated by Cron jobs.
Next, you can create a campaign in Mautic to automatically delete the contacts in the bounced email
segment.
Can’t Open the HTML Code Editor in Page Builder?
Since Mautic 4.0, the landing page builder uses the GraphJS framework and one of the problems is that you can open the HTML code editor only once. If you want to re-edit the code, it refuses to load the editor.
The trick is that you need to press F5 to refresh the web page and open the page builder again, then you will be able to open the HTML code editor.
Mautic PHP Console Commands
The Mautic Cron jobs are several PHP console commands. There are also other commands you might find useful. List available commands with:
sudo -u www-data php8.0 /var/www/mautic/bin/console
For example, you can update Mautic from the command line.
sudo -u www-data php8.0 /var/www/mautic/bin/console mautic:update:find sudo -u www-data php8.0 /var/www/mautic/bin/console mautic:update:apply
The console in a PHP web application is usually available as bin/console
, app/console
, or console.php
. Not every PHP web application provides console commands. The available commands are not the same for different web applications. For instance, some allow you to create users and reset passwords, while others may not allow you to do so.
Tips
- If you use Adblocker, please disable it on your Mautic URL, or you might have problems editing landing pages in Mautic.
- If you use Mautic in a production environment, it’s recommended that you wait some time to upgrade to the next version. For example, when version
4.3
comes out, I stay with version4.2
. I only upgrade to version4.3
when version4.4
comes out.
Inline Your CSS Styles
Gmail will strip out <head>
and <style>
tags from emails, so it’s best to have your CSS written inline within your markup. You can use a conversion tool made by Mailchimp automatically inline your email’s CSS.
Wrapping Up
I hope this tutorial helped you install Mautic on Ubuntu 22.04. You can also check out Mautic getting started guide to learn how to use it. As always, if you found this post useful, then subscribe to our free newsletter to get more tips and tricks. Take care 🙂
Decided to try Mautic after finding out on Try Direct that it can facilitate our marketing campaigns, and help us monitor our social media results. Your tutorial was actually really helpful, wouldn’t know how I would have dealt with installing without it.
HI, this tuto works to install Mautic on Digitl Ocean?
Thank you,
Christian
You can install it on any VPS, but I recommended Kamatera VPS instead of DigitalOcean, because DigitalOcean blocks port 25 and you won’t be able to send emails directly. If you prefer to use SMTP relay service to send email, then you can use DigitalOcean.
Im using Sendinblue to send emails,what you think?
That’s good. You can install Mautic on your DigitalOcean VPS.
Using Nginx on port 80 you should remove /etc/nginx/sites-enabled/default and symlink the mautic vhost.conf like his ln -s /etc/nginx/sites-available/mautic /etc/nginx/sites-enabled/ before restarting nginx otherwise you get the default page and without the symlink the site does also not come up, rest is ok! Tnxs a lot Xiao, kind regards from Holland, Rick
Hi RVL
i am getting default apache page after reboot, even though default file is deleted.
apache2 597 root 4u IPv6 17172 0t0 TCP *:http (LISTEN)
apache2 648 www-data 4u IPv6 17172 0t0 TCP *:http (LISTEN)
apache2 652 www-data 4u IPv6 17172 0t0 TCP *:http (LISTEN)
apache2 653 www-data 4u IPv6 17172 0t0 TCP *:http (LISTEN)
apache2 656 www-data 4u IPv6 17172 0t0 TCP *:http (LISTEN)
apache2 657 www-data 4u IPv6 17172 0t0 TCP *:http (LISTEN)
dont know what else to do i find this solution on stackoverflow and this resolves my problem
sudo service apache2 stop
sudo systemctl restart nginx
but after reboot its coming back again, so there is another command in that stackoverflow site, after that its ok
sudo systemctl stop apache2
sudo systemctl start nginx
sudo systemctl disable apache2
https://stackoverflow.com/questions/51525710/nginx-failed-to-start-a-high-performance-web-server-and-a-reverse-proxy-server
sudo lsof -i:80
——————-
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
nginx 588 root 8u IPv4 17257 0t0 TCP *:http (LISTEN)
nginx 588 root 9u IPv6 17258 0t0 TCP *:http (LISTEN)
nginx 599 www-data 8u IPv4 17257 0t0 TCP *:http (LISTEN)
nginx 599 www-data 9u IPv6 17258 0t0 TCP *:http (LISTEN)
My question is there any thing we missed in configuration etc
Thank you for the fantastic guide! It has saved me countless hours of work! So that I can focus on other things in my business. Great step-by-step instructions and explanations. I really appreciate the time you spent creating this!
Again, Thank you!
Mautic now requires using Composer for installation especially to use the marketplace, any idea on article that explains that?
A motivating discussion is definitely worth comment. I do believe that you should publish more
about this subject.
To the next! Cheers!!
Amazing tutorial! I wouldn’t be able to install mautic if wasn’t for this tutorial! Thanks for your great work!
I have installed iredmail in my ubuntu 22.04, and it runs php8.1, that I should downgrade the php version to 8.0? do you have toturial how to downgrade the php version to 8.0?
We created custom php.ini (60-custom.ini) but there’s no directive instructing Mautic to look for it. Am I wrong to assume this? Until I hear back, I will also make the changes in the php.ini file just in case.