我正在使用以下 VBA 宏从 Excel 中邮寄一系列单元格
ActiveSheet.Range("A2:Q133").Select
ActiveWorkbook.EnvelopeVisible = True
With ActiveSheet.MailEnvelope
.Introduction = "demo"
.Item.To = "abc@abc.com"
.Item.Subject = "Testing mail"
.Item.Send
End With
我想修改代码以在最后插入一些文本。我尝试使用
.Item.HTMLBody = "Random text"
但邮件不包含文本。
如果我做错了什么以及正确的方法是什么,请告诉我。提前致谢!