@if (part.type === 'text/html') {
@if (content | async | mailAttachmentText: part.parameters?.charset; as content) {
} @else {
}
} @else if (part.type === 'text/plain') {
@if (content | async | mailAttachmentText: part.parameters?.charset; as content) {
{{ content }}
} @else {
}
} @else if (part.type === 'multipart/alternative') {
@if (part.childNodes && part.childNodes.length > 0) {
}
} @else if (part.type.startsWith('multipart')) {
@for (child of part.childNodes; track child) {
}
} @else {
}