DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub kitapgonder()
Dim outapp As Object
Dim outmail As Object
For i = 2 To Sheets("Sheet1").Range("a65536").End(xlUp).Row
Set outapp = CreateObject("Outlook.Application")
Set outmail = outapp.CreateItem(0)
a = 2
With outmail
.To = Sheets("Sheet1").Cells(a, 1).Value
.CC = ""
.BCC = ""
.Subject = "Çalışma Kitabı"
.Body = ""
.Attachments.Add ThisWorkbook.FullName
.Send
a = a + 1
End With
Set outapp = Nothing
Set outmail = Nothing
Next
End Sub