Email not working

Cassatt

New Member
Joined
Sep 11, 2021
Messages
1
Office Version
  1. 2016
Platform
  1. Windows
Hi, Email not working. When command button/vba is running a excel icon w/red X dot will surface then it turn gray and disappear after message box is accepted.

Excel worksheet ("Email Timesheet")

In column A-F

A
: Staff Id “ID”
B : Staff Names “Name”
C : E-mail addresses “eMail Id”
D : Attachment “Attachment”
E : email text message “Body”

send_email_complete()



Dim OutApp As Object

Dim OutMail As Object

Dim sh As Worksheet

Dim cell As Range

Dim FileCell As Range

Dim rng As Range

Dim epar As Range





With Application

.EnableEvents = False

.ScreenUpdating = False

End With



Set sh = Sheets("Email Timesheet")



Set OutApp = CreateObject("Outlook.Application")



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



Set rng = sh.Cells(cell.Row, 1).Range("C1:Z1")



If cell.Value Like "?*@?*.?*" And _

Application.WorksheetFunction.CountA(rng) > 0 Then

Set OutMail = OutApp.CreateItem(0)



With OutMail

.to = cell.Value

.Body = cell.Value



For Each FileCell In rng.SpecialCells(xlCellTypeConstants)

If Trim(FileCell) <> "" Then

If Dir(FileCell) <> "" Then

.Attachments.Add FileCell.Value



End If

End If



Next FileCell

.Send 'or .Display

End With



Set OutMail = Nothing

End If

Next cell



Set OutApp = Nothing

With Application

.EnableEvents = True

.ScreenUpdating = True



MsgBox "EMAIL SENT TO STAFF COMPLETE"





End With

End Sub
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.

Forum statistics

Threads
1,215,054
Messages
6,122,893
Members
449,097
Latest member
dbomb1414

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