Format Email - HTML in VBA

kamccar

New Member
Joined
Jul 23, 2019
Messages
18
Hi!

I have a VBA code to send emails through outlook, however I am having trouble formatting the body of the email. Whenever I put words in or try to insert breaks I am getting a "Compile Error, Expected: end of statement". I'm not sure what the way around this is, or how I can just paste my HTML code in to format the body of the email.

Any help would be greatly appreciated, the code is as follows:

Sub Send_Files()


Dim OutApp As Object
Dim OutMail As Object
Dim sh As Worksheet
Dim cell As Range
Dim FileCell As Range
Dim rng As Range


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


Set sh = Sheets("Sheet1")


Set OutApp = CreateObject("Outlook.Application")


For Each cell In sh.Columns("A").Cells.SpecialCells(xlCellTypeConstants)


'Enter the path/file names in the C:Z column in each row
Set rng = sh.Cells(cell.Row, 1).Range("B1:Z1")

If cell.Value Like "?*@?*.?*" And _
Application.WorksheetFunction.CountA(rng) > 0 Then
Set OutMail = OutApp.CreateItem(0)

With OutMail
.to = sh.Cells(cell.Row, 1).Value
.Subject = "IMPACT MEMOS"
.HTMLBody = ""


For Each FileCell In rng.SpecialCells(xlCellTypeConstants)
If Trim(FileCell.Value) <> "" Then
If Dir(FileCell.Value) <> "" Then
.Attachments.Add FileCell.Value
End If
End If
Next FileCell

.Send 'Or use .Display/Send
End With

Set OutMail = Nothing
End If
Next cell


Set OutApp = Nothing


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


End Function
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Try this

At the end of the code it must be End Sub

Code:
Sub Send_Files()
  Dim OutApp As Object
  Dim OutMail As Object
  Dim sh As Worksheet
  Dim cell As Range
  Dim FileCell As Range
  Dim rng As Range
  
  With Application
    .EnableEvents = False
    .ScreenUpdating = False
  End With
  Set sh = Sheets("Sheet1")
  Set OutApp = CreateObject("Outlook.Application")
  For Each cell In sh.Columns("A").Cells.SpecialCells(xlCellTypeConstants)
    'Enter the path/file names in the C:Z column in each row
    Set rng = sh.Cells(cell.Row, 1).Range("B1:Z1")
    If cell.Value Like "?*@?*.?*" And _
      Application.WorksheetFunction.CountA(rng) > 0 Then
      Set OutMail = OutApp.CreateItem(0)
      With OutMail
        .to = sh.Cells(cell.Row, 1).Value
        .Subject = "IMPACT MEMOS"
         .HTMLBody = ""
        For Each FileCell In rng.SpecialCells(xlCellTypeConstants)
          If Trim(FileCell.Value) <> "" Then
          If Dir(FileCell.Value) <> "" Then
          .Attachments.Add FileCell.Value
          End If
          End If
        Next FileCell
        .display 'Or use .Display/Send
      End With
      Set OutMail = Nothing
    End If
  Next cell
  Set OutApp = Nothing
  With Application
    .EnableEvents = True
    .ScreenUpdating = True
  End With
[COLOR=#ff0000][B]End Sub[/B][/COLOR]
 
Last edited:
Upvote 0
the editor deletes the html code
I put here:

c8967130ab344798eb2c4f9d4c0c4a57.jpg
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,240
Members
452,621
Latest member
Laura_PinksBTHFT

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top