@MailSend option with Bold Test

I currently have a action button that will generate a email for a department to send. They would like the text before the field information to be bolded. Is there a way to do this with the code that I have?

@Command([FileSave]);

@PostedCommand([MailComposeMemo]);

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

@PostedCommand([EditInsertText]; “”);

@PostedCommand([EditGotoField]; “EnterCopyTo”);

@PostedCommand([EditInsertText]; “”);

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

@PostedCommand([EditInsertText];

@NewLine+

"The time the problem occurred: “@Text(Date)+” “+@Text(Time)+” "+Time_Zone+@NewLine+

"User Name: “+L_Name+”, "+F_Name+@NewLine+

"User ID: "+User_Name+@NewLine+

"Firm Code: "+Firm_Code1+@NewLine+

"Workstation OS: "+OS+@NewLine+

"Service Pack: "+OS_ServicePack+@NewLine+

"Browser Version: "+Browser+@NewLine+

"Memory Size: "+Memory+@NewLine+

"IE Version #: "+Version+@NewLine+

"IP Address: "+IP+@NewLine+

"Proxy Server Address: "+Proxy_Address+@NewLine+

"Proxy Server Port: "+Proxy_Port+@NewLine)

Thank you for any assistance :slight_smile:

Subject: Look at @Command([TextBold]) and for that matter the other [Text* commands.

Subject: Also check out @UpdateFormulaContext

Subject: @MailSend option with Bold Text

I’m trying to accomplish the same thing. Were you successful in this? What did you use?