如何使用VBA Access发送电子邮件时插入换行符

问题描述 投票:3回答:2

使用对象“ Outlook.Application”,我使用VBA Access发送电子邮件。在正文中,我输入了如下字符串:

Email = "Random things" & Chr(13) _
& "More random things" & Chr(13) _

如果我在Email中显示字符串MsgBox,则可以正确显示,但是当我发送它时,换行符将被删除。

我尝试过:

  • Chr(13)
  • vbCrLf
  • vbCr

但是所有三个结果都相同:

<< img src =“ https://image.soinside.com/eyJ1cmwiOiAiaHR0cHM6Ly9pLnN0YWNrLmltZ3VyLmNvbS80c0IxSi5wbmcifQ==” alt =“在此处输入图像描述”>

vba access-vba
2个回答
4
投票

尝试此:

Sub OutlookEmail()
Dim AppOutlook As Outlook.Application
    Set AppOutlook = CreateObject("Outlook.application")

Dim Mail As MailItem
    Set Mail = AppOutlook.CreateItem(olMailItem)

Dim Email As String
    Email  = "Random things" & vbNewLine _
             & "More random things" & vbNewLine

'Generate Email

Mail.Subject = "Test Subject"
Mail.To = "[email protected]"

Mail.Body = Email

Mail.Display

Set Mail = Nothing
Set AppOutlook = Nothing

End Sub

经过测试,我的自我似乎可以在我的PC上正常工作。


0
投票

下面的代码显示Outlook中的电子邮件。要发送,请将.Display更改为.Send

Sub SendDisplayEmail(strEmailFrom As String, strEmailTo As String, strEmailCC As String, strEmailBCC As String, strSubject As String)
    Dim OutApp As Object
    Dim OutMail As Object

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

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

    Debug.Print ("From: " & strEmailFrom & ", To: " & strEmailTo & ", cc: " & strEmailCC & ", bcc: " & strEmailBCC & ", file: " & xFile)

    On Error Resume Next

    OutMail
    With OutMail
        .to = strEmailTo
        .CC = strEmailCC
        .BCC = strEmailBCC
        .Subject = strSubject
        '.Body = "Random things" _
        '    & vbCrLf & vbCrLf & "More random things." _
        .BodyFormat = 2 ' olFormatHTML
        .HTMLBody = "<html>Random things<br>More random things.</html>"
        '.Body = strBody
        '.Save
        .Display
        '.Send   'or use .Display
    End With

    On Error GoTo 0

    Set OutMail = Nothing
    Set OutApp = Nothing

    With Application
        .ScreenUpdating = True
        .EnableEvents = True
    End With
End Sub
© www.soinside.com 2019 - 2024. All rights reserved.