- Katılım
- 11 Ağustos 2008
- Mesajlar
- 5,892
- Excel Vers. ve Dili
- Office 2013 Tr - Win10 x64
. . .
19 nolu mesajdaki düzenleme ile bir mail gönderdim size.
. . .
19 nolu mesajdaki düzenleme ile bir mail gönderdim size.
Kod:
With Yeni_Mail
.Subject = Range("AX14").Value
.Body = Range("AX21").Value
.Attachments.Add Yol & "\" & Dosya_Adi
.Save
If Range("AX10") = "" Then
.To = ""
.Display
Else
[B] .To = Range("AX10").Value[/B]
.Send
MsgBox "Mail gönderildi."
End If
End With