excel - 将数据从 Excel 导出到 Outlook

标签 excel vba email outlook

我已经在 Excel 中起草了一封电子邮件,其中填充了数据表中的信息。

单元格 A1 到 A4 包含“嗨,希望你做得好”和消息......等等......

A5到H10有一个包含信息的表格,A11到A30有类似“期待您的回复”的电子邮件内容。

我只想复制 A1:A4 和 A11:A30 的值,但希望 A5:H10 显示为表格。

此代码来自 Ron De Bruin。

下面的代码以表格格式粘贴所有内容:

Sub Mail()

Dim rng As Range
Dim OutApp As Object
Dim OutMail As Object

Set rng = Nothing
On Error Resume Next
Set rng = ActiveSheet.Range("A1:A24").SpecialCells(xlCellTypeVisible)
On Error GoTo 0

If rng Is Nothing Then
    MsgBox "The selection is not a range or the sheet is protected" & _
           vbNewLine & "please correct and try again.", vbOKOnly
    Exit Sub
End If

With Application
    .EnableEvents = False
    .ScreenUpdating = False
End With

Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)

On Error Resume Next
With OutMail
    .Display
    .To = ""
    .CC = ""
    .BCC = ""
    .Subject = ""
    .HTMLBody = RangetoHTML(rng)
End With
On Error GoTo 0

With Application
    .EnableEvents = True
    .ScreenUpdating = True
End With

Set OutMail = Nothing
Set OutApp = Nothing
End Sub

我的其余代码:

Function RangetoHTML(rng As Range)
Dim fso As Object
Dim ts As Object
Dim TempFile As String
Dim TempWB As Workbook

TempFile = Environ$("temp") & "\" & Format(Now, "dd-mm-yy h-mm-ss") & ".htm"

rng.Copy
Set TempWB = Workbooks.Add(1)
With TempWB.Sheets(1)
    .Cells(1).PasteSpecial Paste:=8
    .Cells(1).PasteSpecial xlPasteValues, , False, False
    .Cells(1).PasteSpecial xlPasteFormats, , False, False
    .Cells(1).Select
    Application.CutCopyMode = False
    On Error Resume Next
    .DrawingObjects.Visible = True
    .DrawingObjects.Delete
    On Error GoTo 0
End With

With TempWB.PublishObjects.Add( _
     SourceType:=xlSourceRange, _
     Filename:=TempFile, _
     Sheet:=TempWB.Sheets(1).Name, _
     Source:=TempWB.Sheets(1).UsedRange.Address, _
     HtmlType:=xlHtmlStatic)
    .Publish (True)
End With

Set fso = CreateObject("Scripting.FileSystemObject")
Set ts = fso.GetFile(TempFile).OpenAsTextStream(1, -2)
RangetoHTML = ts.readall
ts.Close
RangetoHTML = Replace(RangetoHTML, "align=center x:publishsource=", _
                      "align=left x:publishsource=")

TempWB.Close savechanges:=False

Kill TempFile

Set ts = Nothing
Set fso = Nothing
Set TempWB = Nothing
End Function

最佳答案

Work with shortcut range method []

常用方法Range("A1").Value = 123,快捷方法为[A1] = 123

示例

With OutMail
    .Display
    .To = ""
    .CC = ""
    .BCC = ""
    .Subject = ""
    .HTMLBody = [A1] & "<BR>" & _
                [A2] & "<BR>" & _
                [A3] & "<BR>" & _
                [A4] & RangetoHTML(rng) & _
                [A11] & "<BR>" & _
                [A12] & "<BR>" & _
                [A13] & "<BR>" & _
                [A14] & "<BR>"
                ' And more [range]
End With

请记住,方括号是范围/括号/引号构造的替代,该方法返回对范围的实际引用,它可以用在等号的任一侧。它可以用来提供其他功能,并且它具有正常范围的所有方法和属性。

记住快捷方式永远不是最快的

关于excel - 将数据从 Excel 导出到 Outlook,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39909739/

相关文章:

VBA Excel 谷歌查找

vba - 在 VBA 中查找宏代码

php 邮件在hotmail 中总是变成垃圾邮件

php - 如何设置已发送到邮件的 url,并且该链接应该重定向到 php 中的另一个 url

javascript - 使用 RegExp 在 jQuery 中进行电子邮件验证

excel - 使用多列标题将 UI 导出到 Excel 表

excel - 比较列与范围并在 VBA 中的多个工作表之间删除

vba - VBA 对象实例如何判断它是否是默认实例?

excel - 如何通过名称引用范围中的列

excel - 尝试完成 sumifs(?) 脚本