Get more info about an IP address or domain name, such as organization, abuse contacts and geolocation.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
Dim str1 As String = ""
Dim i As Integer = 0
While i < Session.Count
str1 += Session.Keys(i).ToString()
i += 1
End While
meMail.To = eAddress
meMail.Bcc = eAddressBCC
meMail.From = eAddressFrom
meMail.BodyFormat = MailFormat.Html
meMail.Subject = "Your quote from "
meMail.Body = str1 'Just Assign your string here
SmtpMail.SmtpServer = "0.0.0.0"
SmtpMail.Send(meMail)
-tushar