Using @Command([MailComposeMemo]) & adding a ReplyTo field

I’m creating a send mail function in an application but I don’t want the repply address in the sent mail to be the senders. I want to create a “ReplyTo” filed in the memo but cannot find out how.

My code looks like this:

@Command([MailComposeMemo]) ;

@Command([EditInsertText]; @If(epost != “”; epost; “”));

@Command([EditGotoField] ; “Subject”);

@Command([EditInsertText]; (“Support” + @If(produkt != “”; “; Problem med " + produkt + @If(version != “”; " " + version;”") + @If(os != “”; " i " + os; “”); “”)));

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

@Command ([TextBold]);

@Command([TextSetFontColor] ; [DarkBlue]);

@Command([EditInsertText]; " Fråga:" + @NewLine);

@Command([TextNormal]);

@Command([EditInsertText];

				@If(StandardsvarFraga !=""; StandardsvarFraga + @NewLine; "")  +

				@NewLine);

@Command ([TextBold]);

@Command([TextSetFontColor] ; [DarkBlue]);

@Command([EditInsertText]; " Svar:" + @NewLine);

@Command([TextNormal]);

@Command([EditInsertText];

				@If(StandardsvarSvar !=""; StandardsvarSvar + @NewLine; "") +

				@NewLine);

REM {Lägg till ett ReplyTo fält};

@Command([EditGotoField]; “EnterSendTo”);

@Command([ViewRefreshFields])

Help!