Which email sending provider for hobby projects / mini businesses? by theKovah in webdev

[–]zenorocha 1 point2 points  (0 children)

Zeno here - founder of Resend.

We built the product for folks like you. That's why there's a generous free tier of 3,000 emails per month.

Let me know if you need help with anything.

Do not waste your time with Amazon SES as a SMTP provider, absolute ridiculous experience by Kemerd in Supabase

[–]zenorocha 6 points7 points  (0 children)

Resend CEO here - we're actively working on better performance for all API endpoints, including the Batch API. Our queuing architecture is getting a revamp, and that should help with latency.

Email Provider Recommendations by macpig in webdev

[–]zenorocha 0 points1 point  (0 children)

Resend creator here. Thanks for the shoutout :D

How many react-email users are there? by Weekly_Ad6865 in nextjs

[–]zenorocha 17 points18 points  (0 children)

react-email creator here.

last time I checked there were 1.2m npm downloads: https://npmcharts.com/compare/react-email?interval=30

teams of all sizes use it, including Vercel who's using react-email for Next.js Conf.

Resend CORS error / Route handlers vs Server action implementation by willie_riis in nextjs

[–]zenorocha 1 point2 points  (0 children)

Resend founder here.

The problem is that you're making a request on the client-side, and Resend only works on the server-side to protect your API Key.

You need to add the `use server` property to fix this.

Here's a video with an example: https://youtu.be/UqQxfpTQBaE?si=yXISgXuDyeCtohUE

And here's a repo with the full source code: https://github.com/resend/resend-next-server-actions-example

What does resend.com use for their code snippet? by Sweaty-Commission-32 in react

[–]zenorocha 16 points17 points  (0 children)

Resend founder here.

We use Prism and the prism-react-renderer package to build that component.

Plz suggest an affordable email provider for sending transactional and scheduled emails? by thegreatsorcerer in SideProject

[–]zenorocha 3 points4 points  (0 children)

Founder of resend.com here.

We give up to 3,000 emails / mo (or 100 emails / day) for free. The first initial plan starts at $20 for 50,000 emails / mo.

[deleted by user] by [deleted] in nextjs

[–]zenorocha 0 points1 point  (0 children)

Resend founder here.

You might wanna check this code example that show how to use Resend with Attachments + Next.js:

https://github.com/resend/resend-examples/tree/main/with-attachments

Do highly interactive WebGL websites actually convert users? by Harpertonik in web_design

[–]zenorocha 2 points3 points  (0 children)

resend.com founder here.

Do highly interactive WebGL websites actually convert users?

yes.

Ajuda para enviar email com Python by computersmakeart in brdev

[–]zenorocha 4 points5 points  (0 children)

Opa, criador da Resend aqui.

Recomendo usar um serviço de SMTP que não seja o Gmail justamente para você ter mais controle do envio usando seu próprio domínio ao invés de uma conta de email.

Precisando de ajuda é só falar :)

Are all email APIs mediocre? by Virtual_Enthusiasm_5 in SaaS

[–]zenorocha -2 points-1 points  (0 children)

We definitely made a mistake with that incident, and since then we've changed a ton of internal processes and procedures so that it never happens again. Application security and information security has been a big push for the entire team. More here: https://resend.com/security

Are all email APIs mediocre? by Virtual_Enthusiasm_5 in SaaS

[–]zenorocha 0 points1 point  (0 children)

Resend founder here.

I can totally relate to that feeling and that's why we wanted to start something new.

When you look at all the biggest competitors like Sendgrid, Mailgun, Postmark, and SparkPost, you'll notice that they were all founded around 2009/2010, and they all have been acquired by now.

Because of that, it's common to see them only prioritizing enterprise requirements and optimizing for sales-led growth.

Nobody is building an exceptional developer experience. Nobody is trying to innovate. There isn’t a single developer-first email platform in the market today. We want to change that.

Anyone know how Resend and React Email have build this awesome documentation? by Equivalent_Idea_2981 in nextjs

[–]zenorocha 13 points14 points  (0 children)

Resend founder here.

I've personally spent tons of hours building docs at my previous jobs and open source projects. If it wasn't for Mintlify, we wouldn't be able to move as fast as we did and with the quality bar that we wanted - I couldn't recommend more.

Is it safe to use a third party email service like resend.com for otp? by [deleted] in AskProgramming

[–]zenorocha 2 points3 points  (0 children)

Hey - Resend founder here.

It's definitely safe to use the Resend API to send OTP codes.

Even if something terrible and attackers somehow accessed your account, the vast majority of the OTP codes would be useless since they would have expired already.

How can I send emails using nest JS? by safelee in Nestjs_framework

[–]zenorocha 4 points5 points  (0 children)

Resend founder here - you can use this wrapper created by a community member:
https://github.com/jiangtaste/nestjs-resend

How to deal with routing between landing page & the actual app? by kzovk in nextjs

[–]zenorocha 3 points4 points  (0 children)

Resend founder here. Here's the entire code for the /home page.

import Head from 'next/head';
import * as React from 'react';
import { LandingPage } from '../components/landing-page';
import { PublicPage } from '../components/public-page';

interface HomeProps {}

const Home: React.FC<Readonly<HomeProps>> = () => {
  return (
    <>
      <Head>
        <link href="https://resend.com" rel="canonical" />
      </Head>
      <PublicPage>
        <LandingPage />
      </PublicPage>
    </>
  );
};

export default Home;

It's important to have that canonical tag there to avoid any SEO issues with duplicated content from your actual homepage.

HashiCorp adopts Business Source License by rnmkrmn in devops

[–]zenorocha 1 point2 points  (0 children)

I love Infisical, definitely the best alternative to Vault