【发布时间】:2022-11-26 08:57:24
【问题描述】:
我需要向多个收件人发送电子邮件。在邮件正文中,每次需要更改的单词很少(大约 10 -12),总共 20 行。这些词在 Excel 工作表的 A 列中可用。
Example
**Body of Email**
Hi all,
Thanks for your email. The data is available from 12th May to 15th May only. Kindly call back after 10th of May.
在此,日期需要根据 Excel 工作表中的列值动态更改。
这有可能吗?
【问题讨论】:
-
查看
glue,例如x <- data.frame(x=c("12th May", "12th June"), y=c("15th May", "15th June")); glue::glue_data(x, "Hi all, Thanks for your email. The data is available from {x} To {y}.")。
标签: power-automate