Format text in Mailsend

Can anyone point me in a direction on how to format the text (font, size?) that I am sending in a email utilizing the MailSend function.

Thank you in advance for any and all input.

Subject: Format text in Mailsend

AFAIK, the only way to format text is to specify a rich text field as one of the bodyfields. This only work in an agent formula, though. Anything more than that, and LotusScript is what you will need.

Subject: Format text in Mailsend

Try this

@Command([EditGoToField];“Body”);

@Command([EditSelectAll]);

@Command([TextSetFontFace];fontList);

@Command([TextSetFontSize];size);

@Command([TextSetFontColor];[color])