TLDR: A few weeks ago I launched a new side project; it’s called RSSMailer (for lack of a better name). As I am writing this I have over 700 users that signed up to this (free) service. It’s a service that helps you to get RSS back into your system by emailing new items daily. Some of the platforms that are supported: YouTube, WordPress, Instagram, Medium, etc.
This project was born with two reasons; the first reason is that I started working with Marc Köhlbrugge on WIP and I wanted to test how working in public works. The other reason is that I was looking for a way to get RSS back into my daily routine. Ten years ago I learned a lot from reading other peoples writing and I stopped doing this when Google discontinued Google Reader.
In this post I’m going to talk about the things that stood out to me during the process.
For my other side projects, I work with at least one other person. Not only does it motivate me when I’m working together, but it’s also great to have another pair of eyes looking at the product.
For RSSMailer I did it differently, this time I chose to work alone, inspired by the work of Pieter Levels and Marc Köhlbrugge.
When I started with this project, I didn’t know if using email to replace an RSS reader was going to be a great solution, so I didn’t want to waste anyone’s time working on a visual design for me. That’s why I decided to do the design myself. I ordered a starting template to cut some corners in the beginning; after some investigation, I picked Sjabloon.
Sjabloon uses Tailwind CSS for styling. The big difference with regular CSS is that you write your styling in your HTML files and you rarely touch the .css file. Which makes the whole process feel super connected; you open a browser tab with the site and a code editor with the HTML file. And that’s all there is. This is an example of a notice from RSSMailer:
<div class="bg-green-400 text-white p-5 mb-5 shadow-lg rounded flex items-center">
<img src="exclamation.png" class="inline h-6 align-middle mr-2">
Okay great, you added a feed! Tomorrow we will send you an email.
</div>
When you get used to the syntax, it’s pretty self-explanatory. Here are some explanations of the classes you’ve seen in my example above.
bg-green-400 = Background green (the scale goes from 100 to 900)
text-white = White text color
p-5 = Padding (on all sides) of size 5 (1.25rem in my case)
mb-5 = Margin bottom of size 5 (1.25rem in my case)
shadow-lg = Large box shadow
rounded = Border radius
flex = display: flex
items-center = align-items: center
inline = display: inline
h-6 = Height of size 6 (1.5rem in my case)
align-middle = vertical-align: middle
mr-2 = Margin right of size 2 (0.5rem in my case)
This is what the final product looks like:
This was going to be my first launch in a while, and one of the things I wanted to do was launch on Product Hunt. So, I asked Marc if he could hunt it for me, so I launched officially on the 7th of August.
After the launch, I noticed some immediate attention to the product and sign-ups was going pretty good that day. On launch day, I got 44 sign ups:
A few days later, I got some press coverage from other sources, which led to the second spike of 58 sign-ups. All these statistics can be found on https://rssmailer.app/open.
Here are some tweets that I received in the first weeks.
If you love RSS feeds, you're gonna love this 💌📣 https://t.co/iLJS5zGrLb
— Product Hunt 😸 (@ProductHunt) August 8, 2019
【海外プロダクトレビュー Day 103】
— ITnews (@itnewsorg) August 10, 2019
「RSSMailer」は、登録したRSSフィードを翌日メールで受け取れるサービスです📩
普段使うツールに寄せることで、RSSの不便さを解消するのはなかなか良い発想です👇https://t.co/ciLlXmocAY
RSS reader + email?
— Marcin Jezierski (@MaJezierski) August 9, 2019
It's https://t.co/FBkbI0ibr9
Kudos goes to @jankeesvw #tech #curation #timemanagement
Yeah, I'm currently preparing the weekly links, thanks to @jankeesvw and his RSSMailer I have a nice page where you can subscribe to get my weeklylinks (and the rest of the content of the blog) in your mailbox :) https://t.co/rIpeCiZF6D
— Stef Walter (@WalterStephanie) August 25, 2019
RSSMailer 是一款 RSS 邮件订阅服务,和一般的 RSS 工具一样输入信息源后,每天以邮件的方式发送内容到你的邮箱。适合轻度 RSS 需求的人(只关注某几个网站,不需实时仅需每天检查一次更新),不用安装额外的工具。链接:https://t.co/YhWNvHOQeD
— 磨刀工具 (@modaotool) September 4, 2019
(注册确认邮件接收可能需要点时间)。 pic.twitter.com/UBAi2lQT08
Pour votre #veille on a déjà parlé des flux #RSS
— OutilsNum (@OutilsNum) August 26, 2019
Avec RSSMailer vous avez les nouveautés directement dans votre boite de réception ✉️
Test @OutilsVeille https://t.co/ejKImrNNdD
RSSMailer 以 Email 訂閱 RSS Feeds,將網站、部落格更新寄回信箱 https://t.co/Z8e0FSlVjQ
— 免費資源網路社群 (@FreeGroup) August 14, 2019
Since the launch, I have been seeing about 10 or more sign ups each day.
At this point, I am not sure what I am going to do with this project yet. I’m thinking about monetization, but with less than 1000 users the economics don’t work out yet. So until the audience has grown, I will probably keep this running.
Like this post? Follow me at @jankeesvw on Twitter