Uipath로 구글 이메일 보낼 때 예약 거는 법 없나요?

현재 구글 스프레트 시트 읽어오는 것과 SMTP 이용해서 메일 보내기까지는 했습니다~
제가 하고 싶은 건 구글 스프테르 시크 예약시간이라는 컬럼에 2024-05-14 15:40 이런식으로 적어놓고
이걸 읽어 온 다음에 자동으로 구글 이메일에 예약을 걸어 저 시간에 자동으로 메일이 갔으면 좋겠습니다

혹시 사용가능한 액티비티 api 호출 방법등이 있으면 알려주세요
gpt 한테 물어보다가 지쳐서 컬럼 왔어요

Hi @jueun46596333,

To print out the date and time in a specific format, you can use DateTimeOffset.ToString
e.g. DateTimeOffset.Now.ToString(“yyyy-MM-dd hh:mm”)

If you have an Attended Process that you run once a day, that process can write the date & time to a spreadsheet (or you can do it) and then the process can read that spreadsheet and create scheduled emails in Gmail to be sent later on. To do this with the current available activities, you could use the Send Email activity, but set the email to be saved as a Draft. After the email is saved as a draft, you could use UI activities to open the draft inside Gmail in a browser and schedule the sending of that email for a specific time. There is no OOTB activity for this currently.

Thanks