Sent Bulk email attachment through excel using gmail.com

avisoft20

Board Regular
Joined
Sep 10, 2016
Messages
64
Dear All ,

I am using this code for outlook,but i want to email by gmail.

--
Sub Button1_Click()
email
End Sub
Public Function email()
Dim fnum As Integer
Dim lnum As Integer
lnum = 20
Dim tt1 As String
Dim tt2 As String


For fnum = 1 To lnum
tt1 = "b" & fnum
tt2 = "a" & fnum
tt3 = "c" & fnum
tt4 = "d" & fnum
tt5 = "e" & fnum
tt6 = "f" & fnum

esub = Range(tt4).Value
sendto = Range(tt1).Value
fname = Range(tt2).Value
fname1 = Range(tt5).Value
cc = Range(tt3).Value
bcc = Range(tt6).Value
Set app = CreateObject("Outlook.Application")
Set itm = app.createitem(0)
With itm
.Subject = esub
.to = sendto
.cc = cc
.attachments.Add (fname)
.attachments.Add (fname1)
.bcc = bcc
.display
.send
End With
Set app = Nothing
Set itm = Nothing




Next fnum


End Function
------------------
Thanks
Avinash Singh.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.

Forum statistics

Threads
1,223,239
Messages
6,170,947
Members
452,368
Latest member
jayp2104

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