Gmail subject dynamic

Hi ,
From Gmail how to enter the subject dynamically.
image
I have created the above flow from the subject line how to add current date and time like
Daily updated on : 13-10-2020 11:10:45

1 Like

@vivek_sivam This Should give you the Date Value in the format you need :
Now.ToString(“dd-MM-yyyy HH:mm:ss”)

3 Likes

We can use Now.ToString(“dd-MM-yyyy HH:mm:ss”) to get current date and time. But i want to some additional text after that only i need date and time
Example suject: daily update at: 13-10-2020 11:10:45
This is i need from the subject

1 Like

@vivek_sivam You can add the Text before using that :
yourString+Now.ToString(“dd-MM-yyyy HH:mm:ss”)

1 Like

Hi Vivek,

You can append date like below,

" daily update at:"+Now.ToString(“dd-MM-yyyy HH:mm:ss”)

3 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.