Send mail from Visual Basic
:: Undergroud :: HACKING
Halaman 1 dari 1
Send mail from Visual Basic
Script VB untuk kirim email menggunakan Microsoft Outlook
Sub Kirim_Pesan
Set OAPP = CreateObject("Outlook.Application")
Set msg = OAPP.CreateItem(0)
msg.To = <e-mail tujuan>
msg.Subject = <judul email>
msg.Body = <isi pesan email>
msg.Attachments.Add (<path attachment>)
msg.Send
Set msg=Nothing
Set OAPP=Nothing
End Sub
NOTE: Komputer harus terinstall Microsoft Outlook :))
simpel to ckckc
Sub Kirim_Pesan
Set OAPP = CreateObject("Outlook.Application")
Set msg = OAPP.CreateItem(0)
msg.To = <e-mail tujuan>
msg.Subject = <judul email>
msg.Body = <isi pesan email>
msg.Attachments.Add (<path attachment>)
msg.Send
Set msg=Nothing
Set OAPP=Nothing
End Sub
NOTE: Komputer harus terinstall Microsoft Outlook :))
simpel to ckckc
:: Undergroud :: HACKING
Halaman 1 dari 1
Permissions in this forum:
Anda tidak dapat menjawab topik