Uri mail

You're referring to URI (Uniform Resource Identifier) mail!

URI mail, also known as mailto URI, is a type of URI that is used to send an email message to a specific email address. The format of a mailto URI is as follows:

mailto:?subject=&body=

Here's a breakdown of the components:

For example, the following is a mailto URI that sends an email to [email protected] with the subject "Hello" and the body "This is a test email":

mailto:[email protected]?subject=Hello&body=This%20is%20a%20test%20email

Note that the & character is used to separate the subject and body parameters, and the %20 characters are used to encode the spaces in the body of the email message.

Mailto URIs can be used in various contexts, such as:

Overall, mailto URIs provide a convenient way to send email messages from web pages, applications, and other digital systems.