{#if selectedMail}

{selectedMail.subject}

{selectedMail.from}

{selectedMail.read ? 'Read' : 'Unread'}
{selectedMail.body}
{#if selectedMail.attachments?.length}

Attachments

{#each selectedMail.attachments as attachment} {/each}
{/if} {#if selectedMail.reply_options?.length && !selectedMail.replied}

Reply

{#each selectedMail.reply_options as option, index} {/each}
{/if} {:else}

Select a message to read it.

{/if}