+ Reply to Thread
Results 1 to 2 of 2

How can I add line breaks in my email messages?

  1. #1
    Registered User
    Join Date
    03-02-2016
    Location
    Los Angeles, CA
    MS-Off Ver
    Office 2011 Mac
    Posts
    1

    How can I add line breaks in my email messages?

    Hi!

    So I have been working on this Macro for about a week now and finally got it to work. However, whenever the email is sent (using outlook), it comes out as 1 line. The body I want sent includes the line breaks in Excel, but I cannot seem to translate it over to an email message.

    Does anyone know what I need to include in my code? Or Where?

    Thank you!

    PHP Code: 
    Sub Mail_In_Excel2011_Mac()

        
    Application.ScreenUpdating False
        Application
    .EnableEvents False


        
    For 1 To Sheets(1).Range("A" Rows.Count).End(xlUp).Row
            MailFromMacwithOutlook bodycontent
    :=Sheets(1).Cells(i5), _
                mailsubject
    :=Sheets(1).Cells(i4), _
                toaddress
    :=Sheets(1).Cells(i3), _
                ccaddress
    :=""_
                bccaddress
    :=""_
                attachment
    :=""_
                displaymail
    :=False
        Next i

        Application
    .ScreenUpdating True
        Application
    .EnableEvents True

    End Sub

    Function MailFromMacwithOutlook(bodycontent As Stringmailsubject As String_
                toaddress 
    As Stringccaddress As Stringbccaddress As String_
                              attachment 
    As Stringdisplaymail As Boolean)
    'Ron de Bruin, function to Mail with Outlook for the Mac, 19-Aug-2013
        Dim scriptToRun As String

        scriptToRun = scriptToRun & "tell application " & _
                      Chr(34) & "Microsoft Outlook" & Chr(34) & Chr(13)

        scriptToRun = scriptToRun & _
         "set NewMail to make new outgoing message with properties" & _
           "{content:""" & bodycontent & """, subject:""" & mailsubject & """}" & Chr(13)

        scriptToRun = scriptToRun & "tell NewMail" & Chr(13)
        If toaddress <> "" Then
            scriptToRun = scriptToRun & "set toaddressList to {" & _
                      Chr(34) & Replace(toaddress, ",", """,""") & Chr(34) & "}" & Chr(13)
            scriptToRun = scriptToRun & "repeat with i from 1 to count toaddressList" & Chr(13)
            scriptToRun = scriptToRun & "make new to recipient at end of to recipients with " & _
                         "properties {email address:{address:item i of toaddressList}}" & Chr(13)
            scriptToRun = scriptToRun & "end repeat" & Chr(13)
        End If
        If ccaddress <> "" Then
            scriptToRun = scriptToRun & "set ccaddressList to {" & _
                      Chr(34) & Replace(ccaddress, ",", """,""") & Chr(34) & "}" & Chr(13)
            scriptToRun = scriptToRun & "repeat with i from 1 to count ccaddressList" & Chr(13)
            scriptToRun = scriptToRun & "make new cc recipient at end of cc recipients with " & _
                         "properties {email address:{address:item i of ccaddressList}}" & Chr(13)
            scriptToRun = scriptToRun & "end repeat" & Chr(13)
        End If
        If bccaddress <> "" Then
            scriptToRun = scriptToRun & "set bccaddressList to {" & _
                      Chr(34) & Replace(bccaddress, ",", """,""") & Chr(34) & "}" & Chr(13)
            scriptToRun = scriptToRun & "repeat with i from 1 to count bccaddressList" & Chr(13)
            scriptToRun = scriptToRun & "make new bcc recipient at end of bcc recipients with " & _
                         "properties {email address:{address:item i of bccaddressList}}" & Chr(13)
            scriptToRun = scriptToRun & "end repeat" & Chr(13)
        End If
        If attachment <> "" Then
            scriptToRun = scriptToRun & "set attachmentList to {" & _
                      Chr(34) & Replace(attachment, ",", """,""") & Chr(34) & "}" & Chr(13)
            scriptToRun = scriptToRun & "repeat with i from 1 to count attachmentList" & Chr(13)
            scriptToRun = scriptToRun & "make new attachment at end of attachments with " & _
                            "properties {file:item i of attachmentList}" & Chr(13)
            scriptToRun = scriptToRun & "end repeat" & Chr(13)
        End If
        scriptToRun = scriptToRun & "end tell" & Chr(13)

        If displaymail = False Then
            scriptToRun = scriptToRun & "send NewMail" & Chr(13)
        Else
            scriptToRun = scriptToRun & "open NewMail" & Chr(13)
            scriptToRun = scriptToRun & "activate NewMail" & Chr(13)
        End If
        scriptToRun = scriptToRun & "end tell" & Chr(13)

        If Len(toaddress) + Len(ccaddress) + Len(bccaddress) = 0 Or mailsubject = "" Then
            MsgBox "There is no To, CC or BCC address or Subject for this mail"
            Exit Function
        Else
            On Error Resume Next
            MacScript (scriptToRun)
            On Error GoTo 0
        End If
    End Function 

  2. #2
    Forum Guru
    Join Date
    07-25-2011
    Location
    Florida
    MS-Off Ver
    Excel 2003
    Posts
    9,653

    Re: How can I add line breaks in my email messages?

    If your default body text format in Outlook is HTML, replace the linefeed characters in your bodytext with the HTML tag <br>

    MailFromMacwithOutlook bodycontent:=Replace(Sheets(1).Cells(i, 5), vbLf, "<br>"), _
    Surround your VBA code with CODE tags e.g.;
    [CODE]your VBA code here[/CODE]
    The # button in the forum editor will apply CODE tags around your selected text.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 7
    Last Post: 08-06-2014, 08:47 AM
  2. Difficulty creating a basic line chart without breaks in line plots
    By brharrii in forum Excel Charting & Pivots
    Replies: 8
    Last Post: 04-05-2013, 04:29 PM
  3. Replies: 4
    Last Post: 02-27-2012, 03:13 AM
  4. Add line breaks and signature to Outlook email
    By kirtchristensen in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-31-2011, 07:29 PM
  5. Retrieving email messages
    By Webtekr in forum Outlook Formatting & Functions
    Replies: 1
    Last Post: 08-11-2009, 02:29 AM
  6. Line Graph - Line Breaks
    By Adhanadel in forum Excel Charting & Pivots
    Replies: 0
    Last Post: 08-28-2006, 12:08 AM
  7. sending email without outlook messages
    By JNW in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 12-19-2005, 02:10 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1