I've been using the following, which used to work and somehow I must have changed something that's making it get stuck. I'll see the email (just like I want it) pop up in Outlook asking me if I want to send it. At that point, everything is frozen and I have to force Excel to shut down. When it was working, I never saw the email pop up on the screen for me to hit send, it would just go straight to my inbox.
Sheets("Self-Service Schedule").Select
ActiveWorkbook.Save
ActiveSheet.Range("A1:D75").Select
ActiveWorkbook.EnvelopeVisible = True
With ActiveSheet.MailEnvelope
.Introduction = Worksheets("Worksheet for S-S").Range("H7")
.Item.To = Worksheets("Worksheet for S-S").Range("H3")
.Item.Subject = Worksheets("Worksheet for S-S").Range("H7")
.Item.Send
End With
Any help would be greatly appreciated!
Sheets("Self-Service Schedule").Select
ActiveWorkbook.Save
ActiveSheet.Range("A1:D75").Select
ActiveWorkbook.EnvelopeVisible = True
With ActiveSheet.MailEnvelope
.Introduction = Worksheets("Worksheet for S-S").Range("H7")
.Item.To = Worksheets("Worksheet for S-S").Range("H3")
.Item.Subject = Worksheets("Worksheet for S-S").Range("H7")
.Item.Send
End With
Any help would be greatly appreciated!