How to get new line in mail

In email, you can create a new line by using the following methods:

Method 1: Using HTML

You can use HTML to create a new line by using the <br> tag. For example:

Hello,<br>
This is a new line.

This will render as:

Hello, This is a new line.

Method 2: Using Markdown

If you're using a Markdown editor or a platform that supports Markdown, you can use the newline character (\n) to create a new line. For example:

Hello
This is a new line.

This will render as:

Hello This is a new line.

Method 3: Using a literal newline character

You can also use a literal newline character (\n) in your email body. For example:

Hello
\n
This is a new line.

This will render as:

Hello

This is a new line.

Method 4: Using a carriage return and line feed

You can also use a carriage return (\r) and a line feed (\n) to create a new line. For example:

Hello
\r\n
This is a new line.

This will render as:

Hello

This is a new line.

Note that the effectiveness of these methods may vary depending on the email client or platform you're using.