日常疑问——outlook回复邮件正文如何插入图片

操作步骤:

  1. 新建电子邮件--插入--图片
  2. ctrl+c将图片copy到回复邮件正文

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
以下是 VBA 代码,可以将 Excel 中的 Sheet 复制到 Outlook 邮件正文并发送邮件: ```VBA Sub SendSheetInEmail() Dim outlookApp As Outlook.Application Dim outlookMail As Outlook.MailItem Dim excelSheet As Worksheet Dim tempFile As String 'Create a temporary file to store the sheet as an HTML file tempFile = Environ$("temp") & "\" & ActiveSheet.Name & ".html" ActiveSheet.PublishObjects.Add(xlSourceSheet, tempFile, ActiveSheet.Name, "", xlHtmlStatic).Publish (True) 'Create a new email Set outlookApp = New Outlook.Application Set outlookMail = outlookApp.CreateItem(olMailItem) 'Set the email properties With outlookMail .To = "recipient@example.com" .Subject = "Sheet " & ActiveSheet.Name & " from " & ThisWorkbook.Name .HTMLBody = "Hello," & vbCrLf & _ "Please find attached the sheet " & ActiveSheet.Name & " from " & ThisWorkbook.Name & "." & vbCrLf & _ "Best regards,<br>" & _ "Your Name" .Attachments.Add tempFile .Display 'or .Send to directly send the email End With 'Delete the temporary file Kill tempFile 'Clean up Set outlookMail = Nothing Set outlookApp = Nothing End Sub ``` 此代码将当前活动的 Sheet 复制为 HTML 文件,将该文件作为附件添加邮件中,并在邮件正文添加一条消息。 若要将多个 Sheet 添加邮件正文中,则需要将每个 Sheet 复制为 HTML 文件,并将所有文件合并为单个文件,然后将该文件添加邮件正文中。 请注意,此代码需要 Outlook 客户端才能发送邮件。 如果没有 Outlook 客户端,则需要使用其他方法发送邮件,例如使用 SMTP 服务器发送邮件
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值