Hello,
I am currently trying to compose a new Outlook email upon clicking a link from the Appian interface. I am unable to insert a line break in the body of the email. Any thoughts on how to resolve this issue ?
Thanks,
Sidd
{ a!richTextDisplayField( value: { a!richTextItem( text: "Click to send Email ", link: a!safeLink( uri: concat( "mailto://abc@xyz.com?subject=Test Email &cc=qwe@xyz.com &Body=", "Hello " & char( 10 ) & "user" ) ), size: "MEDIUM" ) } ) }
Discussion posts and replies are publicly visible
Use "%0D%0A" as a line break. Replace "char(10)" with "%0D%0A".
{ a!richTextDisplayField( value: { a!richTextItem( text: "Click to send Email ", link: a!safeLink( uri: concat( "mailto://abc@xyz.com?subject=Test Email &cc=qwe@xyz.com &Body=", "Hello " & "%0D%0A" & "user" ) ), size: "MEDIUM" ) } ) }
Thanks Ashvin - it worked.