Save & Send (ConvertMIME) with LotusScript

I have a simple button to save and send a form…

@If(@Command([FileSave]);

@Do(

	@MailSend;

	@Command([FileCloseWindow]));

“”)

However, it turns out that the message is being sent as Notes Rich Text instead of a simple MIME message. I was told to use the s.ConvertMIME=False feature for LotusScript to force a simple MIME message, but I don’t know how to set the code up.

Can somebody help me? I know its just a short blip of code but I’m not a LotusScripter by any means.

Thank you!!