Re: Sending mail using smtp
Quote:
Originally posted by doomsday123
Module Send
Sub Main()
'Change each of the parameters to your specific values
SMTP.QuickSend("smtp.hotpop.com", "(my email)", _
"(my email)", "ConquerOnline", "Body Text", _
BodyPartFormat.Plain)
End Sub
End Module
and i am using the http://www.quiksoft.com/freesmtp/ component. If anyone could help that would be great. Thanks
if u use VB .net, u can try
Dim M As New System.Web.mail.MailMessage
M.From = From
M.To = [To]
M.Subject = Subject
M.Body = Body
M.Cc = Cc
M.Bcc = Cc
M.BodyFormat = System.Web.Mail.MailFormat.Html
M.Priority = System.Web.Mail.MailPriority.Normal
System.Web.Mail.SmtpMail.SmtpServer = SMTP '"smtp.adnc.com"
System.Web.Mail.SmtpMail.Send(M)