- Katılım
- 19 Ağustos 2006
- Mesajlar
- 542
- Excel Vers. ve Dili
- Office 2010 / Türkçe
Merhabalar,
aşağıdaki kodu excelde "Toplu Mail" adlı çalışmasayfasının 1.sayfasındaki A sütunundaki mail adreslerine toplu mail atacak şekilde derleyebilirmiyiz.(office 365 için)
B sutununda da konu olacak şekilde
Sub SendEmail()
Dim objOutlook As Object
Dim objMail As Object
Dim strTo As String
Dim strSubject As String
'Dim strBody As String
Set email properties
strTo = "deneme@deneme.com"
strSubject = "deneme333"
strBody = "test 123"
Set objOutlook = CreateObject("Outlook.Application")
Set objMail = objOutlook.CreateItem(0)
With objMail
'.To = strTo
.Subject = strSubject
.Body = strBody
.Send
End With
Clean up
Set objMail = Nothing
Set objOutlook = Nothing
'End Sub
aşağıdaki kodu excelde "Toplu Mail" adlı çalışmasayfasının 1.sayfasındaki A sütunundaki mail adreslerine toplu mail atacak şekilde derleyebilirmiyiz.(office 365 için)
B sutununda da konu olacak şekilde
Sub SendEmail()
Dim objOutlook As Object
Dim objMail As Object
Dim strTo As String
Dim strSubject As String
'Dim strBody As String
Set email properties
strTo = "deneme@deneme.com"
strSubject = "deneme333"
strBody = "test 123"
Set objOutlook = CreateObject("Outlook.Application")
Set objMail = objOutlook.CreateItem(0)
With objMail
'.To = strTo
.Subject = strSubject
.Body = strBody
.Send
End With
Clean up
Set objMail = Nothing
Set objOutlook = Nothing
'End Sub