I have an e-commerce website that needs to send emails to my clients to confirm shipping… Do you have any free software to advise to send emails with a rest API? Thanks

  • @rickdgray@lemmy.world
    link
    fedilink
    English
    2210 months ago

    I highly recommend not wasting time on this and using something like sendgrid. The cost is so little and you’ll save an inordinate amount of time

    • chiisana
      link
      fedilink
      English
      1110 months ago

      Not to mention if this is for an e-commerce site, the last thing you want is not having emails delivered into inbox. Nothing screams sketchy seller more than customers finding your email in spam.

    • @AeloriusOP
      link
      English
      -110 months ago

      Yes, I use mailgun, thank you

  • @chris@l.roofo.cc
    link
    fedilink
    English
    2010 months ago

    The biggest problem is not getting your application to send mail, but to get the mail into the inboxes of people and not spam. That is what you pay the big providers for. Email is broken in that way. I’d advise you to go for a paid service if you want your emails to reliably arrive.

    • Dablin
      link
      fedilink
      610 months ago

      Though I agree with the points in isolation, this entire defeatist attitude is what created this problem in the first place. Within the last year I starting running my own email server with no previous experience or knowledge on the matter. I have learnt an incredible amount about the technology and unfortunately the disadvantages that come with it along with the monopolies by big corporations that have defacto control over the email infrastructure on the internet.

      It is ironic that I have at times had my email server blocked for no reason by say Microsoft/Google but my sever has never sent a single spam in its entire history of its short existance; which itself is part of the problem (it has very low reputation); and yet 90% of email spam on the internet and especially what I have always recieved comes from email addresses hosted from those two big email providers; yet they never dare block each other.

      I am annoyed by the actions of the earlier self-hosted email server administrators that in the past never made a decent and sustained effort to challenge these big corporations in the email space and help protect it from monopolisation. If they had made the effort that people such as Louis Rossman and others are making for sake of Right to Repair we wouldn’t be in a situation where self-hosting your own email server is such a pain in the arse because large corporations can block internet transfer of emails at a whim for no other reason because they feel like it.

      • @cstine@lemmy.uncomfortable.business
        link
        fedilink
        English
        6
        edit-2
        10 months ago

        Eh, I wouldn’t go about ‘the self-hosted admins didn’t do anything!’. There never really was a time when the majority (or even a meaningiful minority) of users hosted their own email.

        In the beginning, you got your email address from your school or your ISP, and it changed whenever you left/changed providers, so the initial “free” email came from the likes of Hotmail (which rapidly became Microsoft), Yahoo (which was uh, Yahoo), and offerings from the big ISPs of the era, like AOL and whatnot.

        You still had school and ISP email, but it just rapidly fell out of fashion because your Hotmail/Yahoo/AOL email never changed regardless of what ISP you used or whatever, so it was legitimately a better solution.

        And then Google came along with Gmail and it was so much better than every other offering that they effectively ate the whole damn market by default because all the people who were providing the free webmail at that time didn’t do a damn thing to improve until after Google had already “won”.

        So if you want to be mad, this is firmly Microsoft and Yahoo’s fault for being lazy fucks.

        • @chris@l.roofo.cc
          link
          fedilink
          English
          210 months ago

          I agree that is sucks but my advice is purely practical. I try to be principled where I can but email is a lost cause in my opinion. I have hosted my own Mailserver. I encountered providers that only have allow lists and needed me to manually apply to allow my mail in. You have to build a reputation to not be marked as spam. Someone can just submit your domain to a block list and you have to find out how to get removed. It is a mess.

          The cold hard truth is that if you want your mail delivered reliably, don’t host yourself.

        • Dablin
          link
          fedilink
          1
          edit-2
          10 months ago

          You could be right. I am sure the entire situation was a lot more nuanced then I portrayed it in my previous post. And I am sure many of the email admins for companies had a lot more localised pressing technical issues to deal with for the companies they worked with then having the time to ponder on the implications of email centralisation from other businesses.

          I will always promote technological independence though. And despite the hurdles that come with running any technological service locally/privately whether it be an email server or otherwise it is ultimately worth it for those who need/desire the full control and privacy of ones own data. At-least that is my 2-cents.

    • @Tillyface89@lemmy.world
      link
      fedilink
      English
      110 months ago

      Agreed, there are plenty of mail services that are geared for just sending only on your behalf. They’ll make sure your mail is secure and actually gets to the recipient’s mailbox instead of getting booted as untrusted spam.

    • @AeloriusOP
      link
      English
      110 months ago

      No, but because of the reputability that I need I chose a service.

  • @Decronym@lemmy.decronym.xyzB
    link
    fedilink
    English
    2
    edit-2
    10 months ago

    Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I’ve seen in this thread:

    Fewer Letters More Letters
    HTTP Hypertext Transfer Protocol, the Web
    IMAP Internet Message Access Protocol for email
    SMTP Simple Mail Transfer Protocol

    3 acronyms in this thread; the most compressed thread commented on today has 5 acronyms.

    [Thread #65 for this sub, first seen 19th Aug 2023, 04:55] [FAQ] [Full list] [Contact] [Source code]

  • @AdminWorker@lemmy.ca
    link
    fedilink
    English
    2
    edit-2
    10 months ago

    A lot of “degoogling” talk has discussed how to degoogled email in a graceful way (Gmail has huge market share). Let me find that community.

    Edit: https://sh.itjust.works/post/3044652

    Edit: based on that post, you probably want fastmail to selfhost. Now the official API of mail clients is jmap, so it may not be “rest” and you may not be able to find a “reliable” rest api

    Edit final: check this out https://en.m.wikipedia.org/wiki/Comparison_of_mail_servers And I still don’t know what ones have a rest api.

    • @not_exactly@feddit.de
      link
      fedilink
      English
      310 months ago

      I think JMAP (the IMAP successor) is the best choice here. It was designed to be an open alternative to the proprietary APIs offered by Gmail and the like. It offers a JSON API that clients can talk to using HTTP. The JMAP website has some examples: https://jmap.io/crash-course.html

      So it seems that a simple server that implements JMAP would be what the OP is looking for, perhaps https://github.com/stalwartlabs/mail-server (which also supports SMTP/IMAP for compatibility with other clients)?

    • @AeloriusOP
      link
      English
      110 months ago

      Yes, but it’s too expensive. I chose Mailgun because I already used it with the student offer.