What's new

The cheapest email marketing out there (Sendy) and a SaaS discussion

A topic related to SAAS or APPs

Welcome to the only entrepreneur forum dedicated to building life-changing wealth.

Build a Fastlane business. Earn real financial freedom. Live your best life.

Tired of paying for dead communities hosted by absent gurus who don't have time for you?

Imagine having a multi-millionaire mentor by your side EVERY. SINGLE. DAY. Since 2007, MJ DeMarco has been a cornerstone of Fastlane, actively contributing on over 99% of days—99.92% to be exact! With more than 39,000 game-changing posts, he's dedicated to helping entrepreneurs achieve their freedom. Join a thriving community of over 90,000 members and access a vast library of over 1,000,000 posts from entrepreneurs around the globe.

Forum membership removes this block.

alexkuzmov

Bronze Contributor
LEGACY MEMBER
Read Rat-Race Escape!
Read Fastlane!
Read Unscripted!
Joined
Sep 20, 2019
Messages
1,034
Location
Bulgaria
Rep Bank
$2,235
User Power: 132%
Hey forum,

So this is a quick look at Sendy.co, what it can and cant do, pros/cons, installation and setup guide.

First of, what is it?

Its a selfhosted solution for email marketing which uses only AWS SES (Cloud Email Service — Amazon Simple Email Service (SES) — Amazon Web Services) with an array of features to help you.
You can make campaigns, add lists, schedule campaigns, have mutliple users and clients login to it so they can manage their own campaigns etc.
As of writing this it can be purchased for a one time fee of $69 and every major version update costs $34 Update Sendy
Which makes it the cheapest email marketing solution out there.

Pros:

- One-time fees, saves money
- Very nice and simple design
- Full control over lists
- Automatically handles any complaints, bounces, and spam
- Autoresponders
- Subscribe Form
- Very nice reports and graphs
- Template support

Cons:

- Limited advanced features, it misses a lot of things which tools like MailCheat(Chimp), aweber, activecampaign and so on provide
- Requires tech knowledge, and a fair bit of it if you want your emails to arrive properly and be opened
- No support for other then Amazon SES
- Shit code, its just... my eyes hurt...


Setup:

1. Buy domain (Recomend: Buy a domain name - Register cheap domain names from $0.99 - Namecheap)
2. AWS account from here: Create Account
3. If you dont have SES setup already, you should do it on this step.
Basically you need to:
- Enable the Workmail (the online UI for AWS email inboxes) Amazon WorkMail – Amazon Web Services
- Verify the domain and an email address: Getting Started with Amazon Simple Email Service | Cloud Email Service | Amazon Web Services
- Set the proper DKIM, SPF and DMARC DNS records for the domain to ensure full mail delivery and verification.
- Create a user identity AWS IAM | Identity and Access Management | Amazon Web Services and create access credentials for it to be able to send email using the AWS SMTP server
4. For hosting the Sendy software I recommend using a lightsail server with Ubuntu: VPS, web hosting pricing—Amazon Lightsail—Amazon Web Services

NOTE: You can choose to create the lightsail server with a LAMP stack from the get go, but I`ll provide an installation guide below for Ubuntu, since I prefer to do things one at a time for more control.


Installation Ubuntu 20.04:

1. Buy sendy from here: Sendy
2. Install software on lightsail server:

Bash:
sudo apt update -y
sudo apt install apache2 -y

sudo apt-get install software-properties-common
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update -y
sudo apt install php8.0 php8.0-{fpm,mysql,curl,gd,mbstring,mysql,xml,mcrypt,zip,ldap} libapache2-mod-php8.0 -y
sudo systemctl restart apache2
sudo a2enmod proxy_fcgi setenvif
sudo systemctl reload apache2
sudo a2enconf php8.0-fpm
sudo systemctl restart apache2
sudo a2dismod php8.0
sudo systemctl enable php8.0-fpm
sudo a2enmod rewrite
sudo systemctl restart apache2
sudo service apache2 restart; sudo service php8.0-fpm restart

sudo apt update -y
sudo apt install mysql-server
sudo systemctl start mysql.service

sudo mysql
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
CREATE DATABASE sendy COLLATE utf8mb4_general_ci;
exit

You need to create a user for the `sendy` database too: How To Create a New User and Grant Permissions in MySQL | DigitalOcean

IMPORTANT: Make sure to grant full priveleges of the user to the `sendy` database

3. Download and install sendy (you get all the info in the email they send after you purchase it)
Put the downloaded files in the /var/www/html folder

4. Follow the instruction from the get started guide: Get Started with Sendy

5. Possible issues

There was an issue with the initial tests.
The emails always went to spam, and were marked as:

Be careful with this message
The sender hasn't authenticated this message so Gmail can't verify that it actually came from them. Avoid clicking links, downloading attachments, or replying with personal information.

The problem was with the DMARC validation.
While the DKIM and the SPF validation were correct and handled by default by the AWS SMTP server, the DMARC was not.
An additional setting in AWS was required.
Not only that but other people had the same problem and no one had found a solution yet.
Check one of my answers here: DMARC fails using custom domain with Sendy, messages marked as spam

In a nutshell, when you create your verified identity, make sure to set DKIM signatures: Enabled
That fixes the DMARC validation issue, and emails arrive in inboxes perfectly.


NOTES:

1. You can go with nginx or a different PHP stack, doesnt matter much.
Most of the action is done on the server, so the webserver is of little concern.

2. I`ll be doing full tests of the capibilities of the Sendy software with a list of ~60k verified subscribed user emails.
I dont yet have any data on speed, effectivenes or reliability.



What prompted this was the suggestion from @Andy Black in this thread: IDEA - Computer Nerds - BREAK This Industry

Its a coincidence (or not) but I`m building a SaaS for email marketing.
The software I`m building is meant to address the Cons of software like Sendy, while keeping almost all of the Pros
PLUS it will address the cons of software like MailCheat(Chimp) with its high prices and unused features.

The story behind this is a bit long, but I`ll give the short version.
The bulk of my income still comes from trading my time for money so I`ve been heavily involved in building a charity platform in my own country Bulgaria (I can add links to it if anyone is interested)
We did great things with it and is currently the largest charity platform in my country receiving about 1 million USD in donations each month.

One of the problems, which remains unsolved is that we wanted to do email marketing campaigns to donators for any current campaign so we could kickstart it.
However, after more than 7 services, including MailCheat(Chimp), aweber, activecampaign, sendgrid, sendinblue, snov and I cant remember the rest, we couldnt find anything that we can use.
The problems ranged from validation issues, refusal to run campaigns, automatically stopping them, emails going to spam and/or not being opened, refusing to use the list that we had, insisting on adding external JS scripts to track events and so on.
We couldnt run a single campaign from start to finish for a whole year and we spent close to 10k USD for no results.

Finally we decided to solve our own problem by building a service that we really need and making it a SaaS so if anyone else wants to use it they can.
The initial thought was to make an integrated solution in the charity platform itself, but that was a stupid idea.
Same effort, no way to use it outside.

This happened naturally I consider it work as part of the charity platform, so I`m still busy with this as my main business idea ATM: EXECUTION - Starting a cosmetics brand [EXECUTION]

The plan is to make something simple at first and grow it overtime using user feedback and suggestions while making sure that we solve core problems from the start.
For example the payment model will be "Pay as you grow" as in, there will be no fixed monthly payment, you will NOT be paing to just have an email list hosted.
Instead you`ll pay only for the emails you send and any modules you use.
An example for a module would be the option for a subscription form.
You dont plan to use a subscription form on your site? No problem, you wont be paying for that.
You dont send any emails this month, no moduels active? You pay nothing and your account stays intact ready for use when you need it.

There will be a very easy way for users of the software to interact directly with development, request features and vote on requested features which will be the basis of the roadmap of the software.
This option to vote on suggestions and build the tools which the users actually want was inspired by @MJ DeMarco and @Dean Irwin

I`ll make a dedicated thread about this when the Beta is out.
However feel free to share you wants, needs, frustrations and problems that you have when it comes to email marketing.
I`d love to hear from the forum.
 
Membership Required: Upgrade to Expose Nearly 1,000,000 Posts

Ready to Unleash the Millionaire Entrepreneur in You?

Become a member of the Fastlane Forum, the private community founded by best-selling author and multi-millionaire entrepreneur MJ DeMarco. Since 2007, MJ DeMarco has poured his heart and soul into the Fastlane Forum, helping entrepreneurs reclaim their time, win their financial freedom, and live their best life.

With more than 39,000 posts packed with insights, strategies, and advice, you’re not just a member—you’re stepping into MJ’s inner-circle, a place where you’ll never be left alone.

Become a member and gain immediate access to...

  • Active Community: Ever join a community only to find it DEAD? Not at Fastlane! As you can see from our home page, life-changing content is posted dozens of times daily.
  • Exclusive Insights: Direct access to MJ DeMarco’s daily contributions and wisdom.
  • Powerful Networking Opportunities: Connect with a diverse group of successful entrepreneurs who can offer mentorship, collaboration, and opportunities.
  • Proven Strategies: Learn from the best in the business, with actionable advice and strategies that can accelerate your success.

"You are the average of the five people you surround yourself with the most..."

Who are you surrounding yourself with? Surround yourself with millionaire success. Join Fastlane today!

Join Today
Tu O huv ep aqfevi epf tuni siem feve vu tjesi.

Jisi esi e e gix nusi Dupt vu Tipfz

1. Zua depv tipf ineomt vu e motv meshis vjep vji feomz monov gus EXT, zua depv iwip tvesv vji denqeohp.
Tu zua esi gusdif vu tqmov vji ineom motvt, iwip vjuahj zua dep monov vji tipf sevi vu ci cimux xjev zua duamf quttocmz tipf op e tophmi fez.
Xjodj csopht ni vu vji piyv dup.

2. Zua depv tiv vji tipf sevi vu ci cimux 1 qis tidupf xovjuav venqisoph xovj vji dufi.
Vjot ot e dunnup vjini gus vji tugvxesi.
Vjisi esi tumavoupt vu vjopht, cav zua jewi vu lpux xjisi epf xjev vu djephi op vji dufi vu neli movvmi vjopht moli vjot xusl.

3. Zua depv tdjifami e denqeohp gus e voni qisouf, upmz vji tvesv fevi.

-------------------------------------------
Xi jef nusi qsucmin xovj vji tvesv, egvis e gix vitv xovj tnemmis motvt (3l op vuvem tipv) xi huv cmudlif cz enebup.
ONQUSVEPV: Neli tasi vu gummux citv qsedvodoit xjip tipfoph zuas ineomt tu zua fupv hiv zuas edduapv qeati cz enebup.
Emm vji samit gus tipfoph qsuqis ineomt tvomm eqqmz (zua depv tipf tden ineomt atoph epz tztvin, pu nevvis jux iyqiptowi us djieq)

Egvis xi huv uas edduapv cedl epf sappoph, xi djephif vji ineom viyvt cetif up tahhitvoupt gsun enebup epf xi tvesvif xovj meshis denqeohpt.

1681304763024.webp

Vjopht esi muuloph huuf tu ges.
Vji uqip sevi ot eneboph!

Xi tvomm piif vu gohasi uav jux vu civvis nepehi vji motvt, cav tu ges tu huuf.
 
E movvmi aqfevi up vjopht.
O`n lopf ug e wodvon ug tadditt jisi.
Vji tipfz tztvin xuslif uav tu ximm, vjev xi ecepfupif vji qmept ug neloph uas uxp TeeT tiswodi gus tipfoph ineomt.

Updi dupgohasif, xi tvesvif tipfoph vipt ug vjuatepft ug ineomt qis xiil epf ov emm katv xuslt:

1696405179904.webp

Vji uqip sevi ot taqisc, vji dmodlt wesz, cav ataemmz jov ecuav 3-4%
Xjodj ot hsiev, duptofisoph vji xiilmz wumani ug ineomt tipv.

Tu zie...
 
Ovt ciip e zies epf O huv vu tez, Tipfz xuslt hsiev. Vjisi ot puvjoph imti O xuamf sidunnipf.
Gamm zies vu caz ov epf sap ov? Ecuav 150 ATF.
Emtu O`wi miespif qsivvz nadj iwiszvjoph vjisi ot vu miesp ecuav tipfoph ineomt O vjopl. Jux vu dummidv vjin, jux vu tvsadvasi vjin qsuqismz, xjev opgu vu tipf, jux vu ewuof vji tqen gomvist 100% ug vji voni epf nusi.

O xepvif vu qutv e raodl aqfevi:

1732227779608.webp

Vji uqip sevi gsun metv nupvj ot puv vjev huuf, cav xi gohasi uav xjz epf xi`mm hiv ov cedl vu ecuwi 50% eheop.

Apgusvapevi vjev O duamfpv iwip hiv vu emqje wistoup xovj vji ineom neslivoph TeeT.
 
Vjeplt gus tjesoph! O'n emtu muuloph ev Tipfz vu ati et ep emvispevowi vu DupwisvLov cideati ug vji qsodi.

O siemmz fup'v ati nepz gievasit ug nufisp ineom neslivoph tugvxesi, katv tipf qmeop viyv ineomt xovj e gix moplt, tu O gohasi Tipfz xomm ci qisgidv. O lpux QJQ et ximm, tu vjot dupwopdit ni vu hu xovj Tipfz
 
Ovt ciip e zies epf O huv vu tez, Tipfz xuslt hsiev. Vjisi ot puvjoph imti O xuamf sidunnipf.
Gamm zies vu caz ov epf sap ov? Ecuav 150 ATF.
Emtu O`wi miespif qsivvz nadj iwiszvjoph vjisi ot vu miesp ecuav tipfoph ineomt O vjopl. Jux vu dummidv vjin, jux vu tvsadvasi vjin qsuqismz, xjev opgu vu tipf, jux vu ewuof vji tqen gomvist 100% ug vji voni epf nusi.

O xepvif vu qutv e raodl aqfevi:

View attachment 60782

Vji uqip sevi gsun metv nupvj ot puv vjev huuf, cav xi gohasi uav xjz epf xi`mm hiv ov cedl vu ecuwi 50% eheop.

Apgusvapevi vjev O duamfpv iwip hiv vu emqje wistoup xovj vji ineom neslivoph TeeT.
xux vjot ot e hsiev qutv O muulif ev Tipfz ziest ehu.

esi zua atoph ov gus tipfoph uav gus foggisipv dmoipvt?

Vszoph vu sinincis xjz O ecepfupif tivvoph ov aq, xupfis og ov xet enebup puv eqqsuwoph nz ineom monov cideati vjiz duamf tii o xet e neslivoph ehipdz.
 
xux vjot ot e hsiev qutv O muulif ev Tipfz ziest ehu.

esi zua atoph ov gus tipfoph uav gus foggisipv dmoipvt?

Vszoph vu sinincis xjz O ecepfupif tivvoph ov aq, xupfis og ov xet enebup puv eqqsuwoph nz ineom monov cideati vjiz duamf tii o xet e neslivoph ehipdz.
Opfiif, xi esi atoph vu tipf vu foggisipv qiuqmi, cav O xuamf puv demm vjin dmoipvt, nusi eddasevi xuamf ci atist op uas deti, cav vji tugvxesi dep ci atif vu tipf vu epzupi.

Og zua siraitv e monov opdsieti gsun enebup gus ineom neslivoph tvs8 aq, vjiz`mm fipz zua iwiszvoni. Vjiz esi wisz tidsivowi ecuav vjios tu demmif "Vsatv epf Tegivz" qsudittit.
Nz efwodi ot vu sap xovj e mux monov gus 1-2 nupvjt, vjip siraitv e monov opdsieti gus "catopitt iyqeptoup" epf neli tasi vu tez vjev zua jewi emm vji qsuqis djidlt op qmedi, zua wemofevi zuas ineomt, zua jewi fuacmi uqv op gus neslivoph gusnt ivd.

Uggduasti vjisi esi xezt vu tivaq zuas uxp TNVQ tiswis, cav ov depv xusl xovj Tipfz.
 
Opfiif, xi esi atoph vu tipf vu foggisipv qiuqmi, cav O xuamf puv demm vjin dmoipvt, nusi eddasevi xuamf ci atist op uas deti, cav vji tugvxesi dep ci atif vu tipf vu epzupi.

Og zua siraitv e monov opdsieti gsun enebup gus ineom neslivoph tvs8 aq, vjiz`mm fipz zua iwiszvoni. Vjiz esi wisz tidsivowi ecuav vjios tu demmif "Vsatv epf Tegivz" qsudittit.
Nz efwodi ot vu sap xovj e mux monov gus 1-2 nupvjt, vjip siraitv e monov opdsieti gus "catopitt iyqeptoup" epf neli tasi vu tez vjev zua jewi emm vji qsuqis djidlt op qmedi, zua wemofevi zuas ineomt, zua jewi fuacmi uqv op gus neslivoph gusnt ivd.

Uggduasti vjisi esi xezt vu tivaq zuas uxp TNVQ tiswis, cav ov depv xusl xovj Tipfz.
Vjeplt gus vji siqmz vjev nelit tipti xesn ov aq vu tjux zua’si puv huoph vu ci ep ottai.
 
O’wi ciip atoph tjuqogz gus nz ineom neslivoph tu ges epf ov’t xuslif ul.

O vsoif atoph tipfz op vji tannis epf iwiszvjoph xipv tvseohjv vu tqen - epz vjuahjvt up jux vu qsiwipv vjot?
Vjisi duamf ci nepz sietupt, O piif vu tii vji tqidogod deti, cav neli tasi vu gummux vji tviqt op TIVAQ op vji opovoem qutv.
 
Membership Required: Upgrade to Expose Nearly 1,000,000 Posts

Ready to Unleash the Millionaire Entrepreneur in You?

Become a member of the Fastlane Forum, the private community founded by best-selling author and multi-millionaire entrepreneur MJ DeMarco. Since 2007, MJ DeMarco has poured his heart and soul into the Fastlane Forum, helping entrepreneurs reclaim their time, win their financial freedom, and live their best life.

With more than 39,000 posts packed with insights, strategies, and advice, you’re not just a member—you’re stepping into MJ’s inner-circle, a place where you’ll never be left alone.

Become a member and gain immediate access to...

  • Active Community: Ever join a community only to find it DEAD? Not at Fastlane! As you can see from our home page, life-changing content is posted dozens of times daily.
  • Exclusive Insights: Direct access to MJ DeMarco’s daily contributions and wisdom.
  • Powerful Networking Opportunities: Connect with a diverse group of successful entrepreneurs who can offer mentorship, collaboration, and opportunities.
  • Proven Strategies: Learn from the best in the business, with actionable advice and strategies that can accelerate your success.

"You are the average of the five people you surround yourself with the most..."

Who are you surrounding yourself with? Surround yourself with millionaire success. Join Fastlane today!

Join Today

Welcome to an Entrepreneurial Revolution

The Fastlane Forum empowers you to break free from conventional thinking to achieve financial freedom through UNSCRIPTED® Entrepreneurship where relative value and problem-solving are executed at scale. Living Unscripted® isn’t just a business strategy—it’s a way of life.

Follow MJ DeMarco

Get The Books that Change Lives...

The Fastlane entrepreneurial strategy is based on the CENTS Framework® which is based on the three best-selling books by MJ DeMarco.

mj demarco books
Back
Top Bottom