How to mail conversation in m

You're referring to a "mail conversation" in Markdown (M).

In Markdown, you can create a mail conversation by using the > symbol followed by the text you want to quote. This is often used to create a blockquote, which is a way to format a quote or a conversation in a readable way.

Here's an example of how you can create a mail conversation in Markdown:

> From: John Doe <[email protected]>
> To: Jane Smith <[email protected]>
> Subject: Re: Meeting on Friday
>
> Hi Jane,
>
> I think we should discuss the meeting on Friday. I have some concerns about the agenda.
>
> Best,
> John
>
> From: Jane Smith <[email protected]>
> To: John Doe <[email protected]>
> Subject: Re: Meeting on Friday
>
> Hi John,
>
> I understand your concerns. Let's discuss it further on Friday.
>
> Best,
> Jane

In this example, each message is separated by a blank line, and the > symbol is used to indicate that the text is a quote. You can add as many messages as you like, and the conversation will be formatted accordingly.

When you render this Markdown code, it will look like a conversation with multiple messages, like this:

From: John Doe [email protected] To: Jane Smith [email protected] Subject: Re: Meeting on Friday

Hi Jane,

I think we should discuss the meeting on Friday. I have some concerns about the agenda.

Best, John

From: Jane Smith [email protected] To: John Doe [email protected] Subject: Re: Meeting on Friday

Hi John,

I understand your concerns. Let's discuss it further on Friday.

Best, Jane