Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Shared Sub EmailInfo(ByVal Message As String, _
ByVal Recipients As String, _
ByVal Sender As String)
Dim objMail As New System.Web.Mail.MailMessage()
' Assemble Email.
With objMail
.To = Recipients
.From = Sender
.Subject = [b]Subject[/b]
.Body = Message
.BodyFormat = Web.Mail.MailFormat.Text
End With
System.Web.Mail.SmtpMail.SmtpServer = [b]ServerName[/b]
System.Web.Mail.SmtpMail.Send(objMail)
End Sub
Noooooooooooooooooooooooo!You still have to set up CDO on every Client machine.
Sure you can save it easily, but where are you going to save it to. Lets say you use Outlook as your typical email client, then you're going to have 2 sources of sent mail. You try telling a typical user, that they will have to search 2 entirely different sources to find a previously sent mail. And if you're going to suggest saving it to your mail client, then you may as well go the whole hog (say another 30 mins?), and automate/integrate into your existing mail client.how long do you consider it takes to write the code to save history(ie sent items)? 30 mins?