<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Dennis Kean</title>
    <description>The latest articles on DEV Community by Dennis Kean (@djkean).</description>
    <link>https://dev.to/djkean</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1459884%2F6d43baf3-7275-40e9-bdba-76a2ee87d503.png</url>
      <title>DEV Community: Dennis Kean</title>
      <link>https://dev.to/djkean</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/djkean"/>
    <language>en</language>
    <item>
      <title>4 Ways to Send Notifications to a Mobile Phone</title>
      <dc:creator>Dennis Kean</dc:creator>
      <pubDate>Wed, 22 May 2024 20:21:54 +0000</pubDate>
      <link>https://dev.to/notificationapi/4-ways-to-send-notifications-to-a-mobile-phone-3cp8</link>
      <guid>https://dev.to/notificationapi/4-ways-to-send-notifications-to-a-mobile-phone-3cp8</guid>
      <description>&lt;p&gt;If you are building a notification service for your product and wondering how to send notifications to your users via their smartphones, we will discuss 4 solutions for sending mobile notifications.&lt;/p&gt;

&lt;p&gt;For a brief overview, here is a table including quick comparison points for our given solutions:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;SMS&lt;/th&gt;
&lt;th&gt;Mobile Push&lt;/th&gt;
&lt;th&gt;Web Push&lt;/th&gt;
&lt;th&gt;3rd-Party Social Apps&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Cost&lt;/td&gt;
&lt;td&gt;Most expensive option&lt;/td&gt;
&lt;td&gt;One-time cost for app store listing&lt;/td&gt;
&lt;td&gt;No cost&lt;/td&gt;
&lt;td&gt;No cost&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Time&lt;/td&gt;
&lt;td&gt;~Weeks of compliance approvals&lt;/td&gt;
&lt;td&gt;~Days of app development + approval time&lt;/td&gt;
&lt;td&gt;~Hours, no 3rd-parties&lt;/td&gt;
&lt;td&gt;~Days to integrate 3rd-parties&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;User Experience&lt;/td&gt;
&lt;td&gt;Simple, fast and direct&lt;/td&gt;
&lt;td&gt;Must download app, flexible design&lt;/td&gt;
&lt;td&gt;Must opt-in, rigid UI&lt;/td&gt;
&lt;td&gt;Easy to use, rigid UI&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  SMS
&lt;/h2&gt;

&lt;p&gt;SMS is a direct way to send notifications to others. Accessible through 3rd-party services, you can integrate notifications via text messages into any project. This will require the designated user’s mobile number, and setting up a plan with services capable of SMS communications such as &lt;a href="https://www.notificationapi.com/features/sms-call-notifications"&gt;NotificationAPI&lt;/a&gt;, Twilio, etc.  &lt;/p&gt;

&lt;p&gt;Some drawbacks to consider when approaching SMS notifications are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Making sure notifications feel important&lt;/li&gt;
&lt;li&gt;Requires users to trust you with mobile numbers&lt;/li&gt;
&lt;li&gt;At large volumes, it will be costly&lt;/li&gt;
&lt;li&gt;Notifications must follow 10DLC compliances &amp;amp; regulations (NotificationAPI handles these for you)
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Mobile Push
&lt;/h2&gt;

&lt;p&gt;Mobile Push offers a great way to deliver notifications to your audience. Through your app, users can opt-in to notifications without divulging personal phone numbers. If your service is already app or mobile-oriented, getting users to opt-in for updates should have a higher conversion rate than projects or services that don’t rely on mobile at all. &lt;/p&gt;

&lt;p&gt;While Mobile Push notifications may sound ideal, developers who haven’t already published an app can find this approach costly and drawn out - here’s why:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Developing an app for Apple and Google’s app stores&lt;/li&gt;
&lt;li&gt;Sending push notifications requires creating and managing device tokens (NotificationAPI handles this for you)&lt;/li&gt;
&lt;li&gt;Having a mobile app creates expectations of other app functionalities from your end-users
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Web Push
&lt;/h2&gt;

&lt;p&gt;Web Push might be the most approachable method for those looking to build their own notification system. Its straightforward design lets users create basic notifications either on their own or through integrating 3rd-party services. Developers can skip building an app or purchasing an SMS service plan, saving both time and money. Users can opt-in by simply visiting your website on their phone and allowing Push notifications when prompted. These web push notifications look similar to app notifications but offer less flexibility and options.&lt;/p&gt;

&lt;p&gt;Web Push is a viable solution for mobile notifications, however, there are some minor cons worth mentioning:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;This requires your users to first visit your website and allow Push Notifications&lt;/li&gt;
&lt;li&gt;You need to generate device tokens in your front-end and store them in the back-end (NotificationAPI does this for you)&lt;/li&gt;
&lt;li&gt;These notifications are easily dismissed and forgotten without a dedicated inbox (NotificationAPI offers an in-app notification inbox)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Other Social Apps (Slack, WhatsApp, Telegram)
&lt;/h2&gt;

&lt;p&gt;Using 3rd-party communication apps allows for free integration of notifications through apps your users may already use. These apps are already well optimized for user experience so they look and feel good to use.&lt;/p&gt;

&lt;p&gt;Having great UX at no cost are good enough reasons to consider 3rd-party apps for notifications, though there are still some downsides:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;For apps like Slack, it takes time to develop and integrate your server/channel&lt;/li&gt;
&lt;li&gt;Similar to Mobile Push, using 3rd-party apps generates the expectation of more than just notifications
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Picking the right approach depends a lot on the platforms your company aims to support. For example, if your software is only going to be accessible through a web interface, then SMS and Web Push Notifications are viable options. If you have plans for a mobile app, then mobile app notifications are certainly the right way to go. If you believe most of your users will integrate your software into existing apps, then you may want to consider the last option.&lt;/p&gt;

</description>
      <category>saas</category>
      <category>notifications</category>
      <category>mobile</category>
    </item>
    <item>
      <title>Ultimate Guide on Notification Services - A Technical Overview (2024)</title>
      <dc:creator>Dennis Kean</dc:creator>
      <pubDate>Wed, 01 May 2024 20:34:30 +0000</pubDate>
      <link>https://dev.to/notificationapi/ultimate-guide-on-notification-services-a-technical-overview-2024-57c9</link>
      <guid>https://dev.to/notificationapi/ultimate-guide-on-notification-services-a-technical-overview-2024-57c9</guid>
      <description>&lt;p&gt;Do you need a 3rd-party notification service? In this article, we review the challenges of a typical notification project and review the viable solutions.  &lt;/p&gt;

&lt;h2&gt;
  
  
  Motivation
&lt;/h2&gt;

&lt;p&gt;Until a few years ago, the only way to build product-to-user notifications in SaaS products was to build them from scratch. This came with a few problems.  &lt;/p&gt;

&lt;h2&gt;
  
  
  The business case against building notifications
&lt;/h2&gt;

&lt;p&gt;If you have ever tried to prioritize a notification project in a growing tech company, you have experienced the following:&lt;/p&gt;

&lt;p&gt;Similar to Authentication, notifications are "utility" features. They don't generate revenue, don't have a place on your pricing page, or excite end-users. So it's difficult to get buy-in from your team to prioritize notifications. However, they are &lt;strong&gt;necessary&lt;/strong&gt; for users, and when implemented poorly - just like authentication - they blow up in your face with bugs, downtimes, frustrated users (&lt;a href="https://status.launchdarkly.com/incidents/fsvv39rnqcd5?u=t3w02q1rgp4n"&gt;LaunchDarkly&lt;/a&gt;, &lt;a href="https://www.businessinsider.com/starbucks-app-glitch-sends-order-ready-error-message-outage-2023-7"&gt;Starbucks&lt;/a&gt;), and poor DX.&lt;/p&gt;

&lt;p&gt;Generally, after a few important clients request notifications or some bad reviews on G2Crowd, notifications make it to your roadmap.  &lt;/p&gt;

&lt;h2&gt;
  
  
  The problem with building notifications
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;There is nothing technically complicated about building notifications.&lt;/strong&gt; It's just that there is so much &lt;strong&gt;nuance&lt;/strong&gt; and &lt;strong&gt;gotchas&lt;/strong&gt; that most people don't think about. Some of these are technical considerations, and some are more relevant to UX:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;General considerations:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Integrating to a 3rd-party, e.g. email, Slack, WebSocket&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Respecting the 3rd-party API Rate Limits, implementing job queues and retry mechanisms, e.g. &lt;a href="https://docs.sendgrid.com/v2-api/using_the_web_api#:~:text=Rate%20Limits,%E2%80%9Ctoo%20many%20requests%E2%80%9D%20message."&gt;SendGrid&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Implementing user preferences and opt-outs (&lt;a href="https://www.notificationapi.com/blog/how-to-prevent-aws-ses-review-and-suspension"&gt;why is this important?&lt;/a&gt;)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Email specific considerations:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Monitoring bounces/reports/complaints to &lt;a href="https://www.notificationapi.com/blog/how-to-prevent-aws-ses-review-and-suspension"&gt;avoid being suspended&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Account/Company verification and higher API limit requests - &lt;a href="https://www.reddit.com/r/SendGrid/comments/14jgn23/denied_signup_instantly_for_violating_acceptable/"&gt;example stories&lt;/a&gt;   &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Designing and coding HTML email templates&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Batching, e.g. weekly digests, and all of its necessary infrastructure (database, cron, job runner)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Google bulk email sender requirements (&lt;a href="https://www.notificationapi.com/blog/the-developers-guide-to-google-bulk-sender-requirements"&gt;learn more&lt;/a&gt;)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;In-App specific considerations:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Database, REST APIs, and optionally WebSocket&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;In-App inbox UI&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;UI-side batching, e.g. "You have 10 new comments" vs. ten separate "You have a comment" notifications&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;SMS/Calls:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Brand/Campaign approval (&lt;a href="https://help.twilio.com/articles/1260800720410-What-is-A2P-10DLC"&gt;A2P 10DLC Registration&lt;/a&gt;)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Country-specific regulations and registrations And more... I know what you are thinking:  &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Do I actually need all this complexity?
&lt;/h2&gt;

&lt;p&gt;TLDR: Are these notifications part of a growing software where people rely on them? Then, the answer is yes.&lt;/p&gt;

&lt;p&gt;You fall in this category if you are building a production-grade SaaS product or internal automation where notifications are an important part of the workflow, e.g. scheduling, review and approval, collaboration, communication, monitoring, or alerting. This means your notification requirements are already complicated or are going to grow in complexity as your business and client base grow.&lt;/p&gt;

&lt;p&gt;If you don't fall into this category, you can safely close this tab, code something together, and move onto more important things in life.&lt;/p&gt;

&lt;p&gt;If you fall in this category, let's learn more about:  &lt;/p&gt;

&lt;h2&gt;
  
  
  Notification Services
&lt;/h2&gt;

&lt;p&gt;Definition: A notification service facilitates implementing, sending, and monitoring product-to-user notifications. It consists of tools and APIs to design notifications, configure workflows, manage user preferences, deliver to the inbox, logging, and analytics. It could be a 3rd-party Notification-as-a-Service like &lt;a href="https://www.notificationapi.com"&gt;NotificationAPI&lt;/a&gt; or implemented internally as a microservice.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How about marketing notifications?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Let's differentiate between:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Product&lt;/strong&gt;: (or product-to-user) notifications, which this article is mainly about, are generated from the codebase and are specific to a user or a client. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Promotional&lt;/strong&gt;: announcements or engagement baits that are always sent to all or many users at once. They don't need to be initiated from the codebase.&lt;/p&gt;

&lt;p&gt;These two categories of notifications have different triggers (product vs. business) and goals, and are managed by different teams. &lt;strong&gt;Avoid combining them into the same system. Use a CRM for promotional notifications. Build or buy a notification service for product notifications.&lt;/strong&gt;  &lt;/p&gt;

&lt;h2&gt;
  
  
  Build vs Buy
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Fun backstory:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;In a different life where I was the CTO of a growing VC-backed B2B SaaS company, our notification system was the bane of our existence. The notification database would frequently fail to scale with our users and cause outages; nobody was happy with the notification UX, users complained in G2Crowd reviews. Even developers were not happy with the DX and everyone wanted to replace it. "There must be a 3rd-party for this", so I googled the words "Notification API" and found nothing. Am I missing something here? Isn't this a big enough problem? I queried our task management software and found that notifications made up 5% of our whole &lt;strong&gt;Done&lt;/strong&gt; tasks. We had spent 5% of our WHOLE productivity on something that had to be replaced. Having found no proper solution, NotificationAPI was born a few years later.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;We haven't done a formal study, but here are some anecdotes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Speaking to CTOs, architects and PMs who are considering NotificationAPI instead of building from scratch, they generally foresee their in-house project to take &lt;strong&gt;4-8 weeks&lt;/strong&gt;, at about &lt;strong&gt;half the cost&lt;/strong&gt; of NotificationAPI in infrastructure and 3rd-party tools&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Speaking to our customers who adopt NotificationAPI [&lt;a href="https://www.notificationapi.com/blog/how-songflow-helps-songwriters-stay-in-sync-using-notificationapi"&gt;1&lt;/a&gt;, &lt;a href="https://www.notificationapi.com/blog/customer-interview-adopting-a-notification-service-at-milk-moovement"&gt;2&lt;/a&gt;], they tell us that we have saved them weeks to &lt;strong&gt;months of work&lt;/strong&gt;, in line with the above estimation&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Talking to some CTOs who already have an in-house notification system in place, it seems like &lt;strong&gt;5%&lt;/strong&gt; is a good estimation of the engineering effort they put into maintaining their notification system (1 in 20 tasks)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So in summary and based on anecdotal experience:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Build&lt;/th&gt;
&lt;th&gt;Buy with NotificationAPI&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Upfront Engineering Cost&lt;/td&gt;
&lt;td&gt;Weeks to Months&lt;/td&gt;
&lt;td&gt;Days&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cost&lt;/td&gt;
&lt;td&gt;50% less&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.notificationapi.com/pricing"&gt;Check our Pricing&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Upkeep&lt;/td&gt;
&lt;td&gt;5% of your engineering capacity over time&lt;/td&gt;
&lt;td&gt;~0%, Most tasks can be handed off to CS/Design&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Requirements to think about
&lt;/h2&gt;

&lt;p&gt;Whether you are building or buying a Notification Service, think about the following requirements:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Functional:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Supported Channels &amp;amp; Platforms&lt;/strong&gt;, e.g. Email, In-App (bell), Mobile Push, Web Push, SMS, Automated Calls, Slack/Teams, Desktop&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Batching/Digest&lt;/strong&gt; to avoid frustrating users with notification overload&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;User Preferences&lt;/strong&gt; to let end-users decide how and what they receive&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Visual Editors&lt;/strong&gt; to let your designers/CS teams build the notifications&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Logs&lt;/strong&gt; for your CS team to find sent notifications and figure out why a user hasn't received a notification&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Analytics/Reporting&lt;/strong&gt; for your PMs to improve the notification experience&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;If everything is important, then nothing is important. Too many notifications for a user is equal to having no notifications at all. No user is going to scroll through 50 notifications. That's why batching, digest and user preferences are very important in a busy application.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Technical:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Language or framework-specific SKDs&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Pre-built UI components&lt;/strong&gt; for in-app notifications (the bell icon), notification preferences pages, unsub pages&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Retention:&lt;/strong&gt; How long are notifications and logs stored?&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Scalability:&lt;/strong&gt; Consider your peak time output and their&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Availability&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Compliance&lt;/strong&gt; (SOC2, GDPR, HIPAA)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Migration:&lt;/strong&gt; How are you moving all the user preferences and existing in-app notifications to a new service?&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Implementation Options
&lt;/h2&gt;

&lt;p&gt;Below are all the options we could think of in order of taking the least amount of effort &amp;amp; risk to the most:&lt;/p&gt;

&lt;h3&gt;
  
  
  1) NotificationAPI
&lt;/h3&gt;

&lt;p&gt;We built &lt;a href="https://www.notificationapi.com"&gt;NotificationAPI&lt;/a&gt; to plug into your software as your own product-to-user notification system. We believe it's a good fit for growing B2B SaaS products with multiple types of notifications. It does the following for you:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Designing Notifications:&lt;/strong&gt; pre-built UI components, visual template editors&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Simple Implementation:&lt;/strong&gt; comes with user preferences, batching &amp;amp; digest, and other logic &amp;amp; databases you would normally implement yourself&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Delivery:&lt;/strong&gt; actually delivers the notification to the destination without requiring any other 3rd-parties (with the exception of mobile push which Google/Apple have a monopoly over)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Post-Release:&lt;/strong&gt; customer success tools, logs, and analytics&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pros: low effort, low risk, UX, DX&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Cons:&lt;/strong&gt; &lt;a href="https://www.notificationapi.com/pricing"&gt;&lt;strong&gt;cost&lt;/strong&gt;&lt;/a&gt;  &lt;/p&gt;

&lt;h3&gt;
  
  
  2) Notification Infrastructure
&lt;/h3&gt;

&lt;p&gt;Think AWS SNS paired with AWS Step Functions or any glorified rebranded versions of them. They help with some of the challenges, but they don't address the majority of the project: notification design, delivery, rate limiting, user preferences, notification batching, monitoring, etc. We believe this middle-ground inherits the problems of both build and buy options without much to offer.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Pros: control&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Cons: cost, effort, stack fragmentation&lt;/strong&gt;  &lt;/p&gt;

&lt;h3&gt;
  
  
  3) Building from Scratch
&lt;/h3&gt;

&lt;p&gt;Viable option depending on your tolerance for the effort and time. We have written a few articles that might help:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.notificationapi.com/blog/notification-service-design-with-architectural-diagrams"&gt;Notification service architecture design&lt;/a&gt; (Serverless version &lt;a href="https://www.notificationapi.com/blog/serverless-notification-service-design-in-aws"&gt;here&lt;/a&gt;)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.notificationapi.com/blog/top-non-technical-mistakes-with-your-notification-service"&gt;Common non-technical mistakes with building a notification system&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.notificationapi.com/blog/building-a-notification-service-top-technical-mistakes"&gt;Common technical mistakes&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.notificationapi.com/blog/hidden-scalability-bottlenecks-in-user-notifications"&gt;Hidden scalability bottle-necks with notifications&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pros: cost, control&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Cons: effort, DX&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  TLDR
&lt;/h3&gt;

&lt;p&gt;Consider a notification service if your notifications are part of a &lt;strong&gt;growing&lt;/strong&gt; software (B2B SaaS, important business automation) where people &lt;strong&gt;rely&lt;/strong&gt; on them (collaboration, communication, alerting, monitoring, approvals, reviews). Otherwise, just roll your own.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
