How to send an email after 30 days using uipath studio?

Hi,
I need to send an e-mail after 30 days using uipath studio

you can use the orchestator. Scheduling the email sending process whenever you require.

Or if you dont use orchestator use:

DateTime.Now.AddDays(-30).ToString(“MM/dd/yyyy”) ← this will give you today -30

IF
DateTime.Now.AddDays(-30).ToString(“MM/dd/yyyy”)
Sen email

1 Like