Send Attachment via E-mail (extra)

RavosJ

New Member
Joined
Aug 27, 2019
Messages
8
Hi all,

I was able to create a macro that allows me, with the push of a button, to send he Excel file to a certain address.

Sub Mod_SendWorkbook()
Dim OutlookApp As Object
Dim OutlookMail As Object
Set OutlookApp = CreateObject("Outlook.Application")
Set OutlookMail = OutlookApp.CreateItem(0)
On Error Resume Next
With OutlookMail
.To = "xxx@gmail.com"
.CC = ""
.BCC = ""
.Subject = Range("D7").Text
.Body = "Please check attached file, thank you."
.Attachments.Add Application.ActiveWorkbook.FullName
.Send
End With
Set OutlookMail = Nothing
Set OutlookApp = Nothing
End Sub

However when I want to fine tune it a bit more:
-I would like it to only sent out I a certain range is filled in
-To display an error message which field is missing
-To display a certain message if it was sent successfully.

I keep struggling to combine any further code with the basic one...
Any help or direction would be greatly appreciated!

Thanks in advance.
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Hi @★ RavosJ, welcome to the forum.


Try this:

Code:
Sub Mod_SendWorkbook()
  Dim OutlookMail As Object
  Set OutlookMail = CreateObject("Outlook.Application").CreateItem(0)
  '
  'validate fields
  If Range("D7").Value = "" Then
    MsgBox "Enter Field D7"
    Exit Sub
  End If
  If Range("D8").Value = "" Then
    MsgBox "Enter Field D8"
    Exit Sub
  End If
  '
  On Error Resume Next
  With OutlookMail
    .To = "xxx@gmail.com"
    .CC = ""
    .BCC = ""
    .Subject = Range("D7").Text
    .Body = "Please check attached file, thank you."
    .Attachments.Add Application.ActiveWorkbook.FullName
    .Display
    If Err.Number = 0 Then
      MsgBox "sent successfully"
    Else
      MsgBox "Sent error: " & Err.Number & " Description: " & Err.Description
    End If
  End With
  Set OutlookMail = Nothing
End Sub
 
Upvote 0
Hi Dante,

There are some issues that pop-up:
- Now it opens outlook instead of sending it directly without opening outlook + it does no send the actual email and the msgbox successfully sent pops up.
- It also cover outlook with white cells that cover the send and fields, making it impossible to send anything.

I tried playing around and amending it but it is not working.
Any further assistance people?

Much appreciated.
 
Upvote 0
Change
.Display

By
.Send

I'm sorry for that, in my tests I use a display to not send emails.
 
Upvote 0

Forum statistics

Threads
1,214,826
Messages
6,121,793
Members
449,048
Latest member
greyangel23

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