• Affidavit@lemm.ee
    link
    fedilink
    arrow-up
    52
    ·
    20 hours ago

    It boggles my mind how so many websites and platforms incorrectly say my e-mail address is ‘invalid’ because it has an apostrophe in it.

    No. It is NOT invalid. I have been receiving e-mails for years. You just have a shitty developer.

    • rumba@lemmy.zip
      link
      fedilink
      English
      arrow-up
      21
      arrow-down
      1
      ·
      19 hours ago

      worst thing is, the regex to check email has been available for decades and it’s fine with apostrophies

      • lad@programming.dev
        link
        fedilink
        English
        arrow-up
        1
        ·
        45 minutes ago

        There are many regexes that validate email, and they usually aren’t compliant with the RFC, there are some details in the very old answer on SO. So, better not validate and just send a confirmation, than restrict and lock people out, imo

      • Ephera@lemmy.ml
        link
        fedilink
        arrow-up
        15
        ·
        18 hours ago

        Well, and remember: If in doubt, send them an e-mail. You probably want to do that anyways to ensure they have access to that mailbox.

        You can try to use a regex as a basic sanity check, so they’ve not accidentally typed a completely different info into there, but the e-mail standard allows so many wild mail addresses, that your basic sanity check might as well be whether they’ve typed an @ into there.

          • Ephera@lemmy.ml
            link
            fedilink
            arrow-up
            7
            ·
            15 hours ago

            Yeah, I’m just saying that the benefit of using such a regex isn’t massive (unless you’re building a service which can’t send a mail).

            a@b is a syntactically correct e-mail address. Most combinations of letters, an @-symbol and more letters will be syntactically correct, which is what most typos will look like. The regex will only catch fringe cases, such as a user accidentally hitting the spacebar.

            And then, personally, I don’t feel like it’s worth pulling in one of those massive regexes (+ possibly a regex library) for most use-cases.