MailCare alternatives and similar software solutions
Based on the "Webmail clients" category.
Alternatively, view MailCare alternatives based on common mentions on social networks and blogs.
-
Mailpile
A free & open modern, fast email client with user-friendly encryption and privacy features -
Tutanota makes encryption easy
Tutanota is an email service with a strong focus on security and privacy that lets you encrypt emails, contacts and calendar entries on all your devices. -
ProtonMail Web Client
Monorepo hosting the proton web clients -
Cypht
Cypht: Lightweight Open Source webmail written in PHP and JavaScript -
WebMail Lite
AfterLogic WebMail Lite PHP. Fast and easy-to-use webmail front-end for your existing IMAP mail server, Plesk or cPanel. -
Disposable Mailbox
Simple disposable mailbox web-app based on a catch-all IMAP mailbox.
Access the most powerful time series database as a service
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of MailCare or a related project?
README
MailCare

This is an open source disposable email address service that was built and maintained at mailcare.io.
Installation
Prerequisites
- To run this project, you must have PHP 7 installed and php-mailparse extension.
- Port 25 should be open from any IP address
- You should setup a host on your web server for your domain.
Step 1
Begin by cloning this repository to your machine, and installing all Composer & NPM dependencies.
git clone [email protected]:mailcare/mailcare.git
cd mailcare && composer install && npm install
php artisan mailcare:install
Step 2
Next, configure your mail transfer agent (MTA) to catch all emails and route them to the php application mailcare. See bellow an example with Postfix that I personnally use.
sudo php artisan mailcare:configure-postfix /etc/postfix example.org forge
This script does 2 configurations
/etc/postfix/main.cf
Replace the line
myhostname = *
bymyhostname = example.org
Add one new linesmtpd_recipient_restrictions = permit_mynetworks, reject_unauth_destination
for security purposes. Add one new linelocal_recipient_maps =
to accept any mailbox under the domain myhostname
/etc/postfix/master.cf
Add one new line
mailcare unix - n n - - pipe flags=F user=forge argv=php /home/forge/example.org/artisan mailcare:email-receive
to create a new hook named mailcare Replace the linesmtp inet *
bysmtp inet n - - - - smtpd -o content_filter=mailcare:dummy
to call this new hook each time you receive an email
and reload Postfix.
Step 3
https://www.wormly.com/test-smtp-server
Screenshots
Emails
[Emails](storage/screenshots/emails.png "Emails")
Statistics
[Statistics](storage/screenshots/statistics.png "Statistics")
Automations
[Automation](storage/screenshots/automation.png "Automation")