Live data from Hacker News

Launch HN: Resend (YC W23) – Email API for developers using React

resend.com

191–200 of 277 posts

Re: Launch HN: Resend (YC W23) – Email API for developers using React

#191
post #75
post #16

Help me understand the React selling point. Existing email sending software supports text and HTML because that's what email is . No email client out there supports JavaScript, virtual DOMs, event loops, SSR or any such fancy web technology. Instead of hand-crafting an HTML template with etc I'm supposed to use your custom React components ( ...) which you will promptly compile down to the tags I mentioned above. So.…

I was in a meeting a while back where a team that was tasked with standing up a few dozen completely static websites was discussing what React components to use. I asked why they were using any front-end JS framework at all and not just creating static html sites, maybe using a generator like Hugo or Eleventy if they wanted to templatize. The answer was that they didn't know how to create plain html sites without JS.…

If you are building static sites, all you are doing with reactjs is abstracting parts via components, right?

All it takes is to actually write the html that goes into a component, rather than the component. I don't see how any react dev wouldn't be able to do this.

Also, I, too, would rather use react. I'd rather be able to reuse components I already have or to make some to reuse later, and to keep the project organized in that way, plus future-proofing the project to a certain degree.

Re: Launch HN: Resend (YC W23) – Email API for developers using React

#192
post #168

Earlier quoted context omitted.

There's a difference between giving feedback and giving feedback with tact, no need to be so harsh even if you are right.

(deleted thx to dang)

Please don't bring in personal details (even public ones) from elsewhere as ammunition in an argument. I understand the impulse and I'm not saying the information is irrelevant. It's just not worth the cost/benefit of what it does to the threads. It only makes them meaner and more personal. Better to resist the temptation.

https://hn.algolia.com/?dateRange=all&page=0&prefix=false&so...

Re: Launch HN: Resend (YC W23) – Email API for developers using React

#194

Earlier quoted context omitted.

Their webhook doesn't send the full body? I'm sure you at least get the data if not the exact data sent...

I don't think any email provider sends the body via webhook. AWS SES certainly doesn't, which I think Resend is built on

Mailgun does

Re: Launch HN: Resend (YC W23) – Email API for developers using React

#195
For me, the biggest annoyance was not being able to Zapier in new entries into a drip campaign. I just refused to use providers I couldn’t zapier together. For the section of the market that is small time, I am not going to implement custom API integration. No zap, no deal.

Re: Launch HN: Resend (YC W23) – Email API for developers using React

#197

Not for nothing... your site (resend.com) is a HUGE CPU hog. I didn't get a chance to view or read anything on the site because I quickly closed the tab after my CPU rocketed up.

Would you mind sharing what computer/OS/browser you're using so we can try to reproduce on our end?

Re: Launch HN: Resend (YC W23) – Email API for developers using React

#198
post #188

Earlier quoted context omitted.

Not quite sure I follow. Do you mean your frontend sends a "send message X to user Y" request to your backend, which then enqueues it internally and handles the actual SMTP later? That part of the logic wouldn't be in the browser (unless you're purposefully trying to emulate SMTP on the client for some reason). In Resend, for example, a 200 just acknowledges that their API successfully received your request and will…

> Do you mean your frontend sends a "send message X to user Y" request to your backend, which then enqueues it internally and handles the actual SMTP later? No, I'm very familiar with transactional email services and why its superior to SMTP. > You just send an API call to someone else's transactional email service and let them worry about all that. 100%. But you also need code to do that. Typically the front-end for…

Ah, I see what you're saying now! Sorry I misunderstood, and thanks for explaining.

That does sound like something better dealt with on the backend at sufficient scale. The Resend API rate limit appears to be 10/sec.

Post reply on HN