hi
yes,
we have 2 domains on we are using the yahoo mail server and another one we using another domain email id and its hosted at another hosting provider...
follow this configure in the web config file.. inside <configuration> section
<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="
raj@yourDomain.com">
<network host="smtp.axishome.com" userName="
raj@yourDomain.com" password="XXXXXXX"/>
</smtp>
</mailSettings>
</system.net>
and in your code
Dim msg As MailMessage = New MailMessage()
msg.From = New MailAddress("
sales@Userdomain.com")
msg.To.Add(New MailAddress("
raj@userdomain.com")
msg.Subject = "welcome to XXXXXXXXXXX"
msg.Body = "body"
msg.IsBodyHtml = True
msg.Priority = MailPriority.High
Dim client As New SmtpClient()
client.Send(msg)
client = Nothing
THanks and regards
Raj