Is an e-mail address a URI?

后端 未结 1 949
无人共我
无人共我 2021-02-12 05:48

I\'ve tried to figure out whether the format of an e-mail address can be said to comply with the definition of a URI or not, but I\'ve found no explicit confirmation of this so

相关标签:
1条回答
  • 2021-02-12 06:22

    Yes, but with "mailto:" prefix.

    A URI has this form:

    <scheme>:<scheme-specific-part>
    

    The <scheme> is "mailto", the <scheme-specific-part> is the address.

    For example:

    mailto:max@provider.com
    

    is a valid URI.

    0 讨论(0)
提交回复
热议问题