Hi All,
I’m using a hyperlink in my outlook email. But I want the month and year to be dynamic.
Please assist.
\10.22.22.22\fds1$\AGL for All (New-2019)\RPAAuto_BACKUP\ PINNSTAL\DEC\2019\RDCProcess\
Month and year: \DEC\2019\
Hi All,
I’m using a hyperlink in my outlook email. But I want the month and year to be dynamic.
Please assist.
\10.22.22.22\fds1$\AGL for All (New-2019)\RPAAuto_BACKUP\ PINNSTAL\DEC\2019\RDCProcess\
Month and year: \DEC\2019\
In your link, replace DEC\2019 with MMM\YYYY
yourLink = strLink.Replace("MMM",Replace(DateTime.Now.ToString("MMM")).Replace("YYYY",DateTime.Now.ToString("yyyy"))
Regards,
Karthik Byggari