I have problem with my title

Hi,

I have trouble showing the space bar between words in my activity “Send Outlook Mail Message”.
I have written Today.ToString(“yyyy-MM-dd”)+“Hello”+“Dear”+“Mr.Lamang” in the subject
And it is shown like 2026-02-27HelloDearMr.Lamang

I have tried to put +“”+ between words but it did not work either.
Please help

Hi,

It seems there is no space character. How about the following?

Today.ToString("yyyy-MM-dd")+" Hello Dear Mr.Lamang"

Regards,