- Katılım
- 18 Ekim 2021
- Mesajlar
- 36
- Excel Vers. ve Dili
- Excel 2016- Türkçe
Butona tıkladığımda ".To = adres" satırında hata veriyor. Yardımcı olursanız çok sevinirim.
Kod:
Sub Eposta()
Set bg = Worksheets("BOLGE")
Dim app As Object
Dim CurrFile As String
Set app = CreateObject("Outlook.Application")
Set posta = app.CreateItem(olMailItem)
sıra = 2
bolgead = bg.Cells(sıra, 3)
dosyayolu = bg.Cells(2, 6)
adres = bg.Cells(sıra, 4)
bilgi = bg.Cells(9, 6)
konu = bg.Cells(6, 6)
metin = bg.Cells(12, 6)
dosya = dosyayolu & bolgead & ".xlsx"
While bolgead <> 0
If bg.Cells(sıra, 5) = "" Then
With posta
.To = adres
.CC = bilgi
.BCC = ""
.Subject = konu
.HTMLBody = metin
.Attachments.Add dosya
.Display
.Send
bg.Cells(sıra, 5) = "Gönderildi"
End With
Else
End If
sıra = sıra + 1
bolgead = bg.Cells(sıra, 3)
adres = bg.Cells(sıra, 4)
dosya = dosyayolu & bolgead & ".xlsx"
Wend
End Sub