PDA

View Full Version : VPS ASP.Net Email Code-behind Setup



suwunk
2011-07-20, 09:18 PM
SMTP Settings for Virtual Server

When configuring your SMTP settings for your virtual server you will need to use the following server.

smtp.vps.myhosting.com

The server is configured to use port 25.
http://myhosting.com/kb/SMTP_for_Virtual_Server

myhosting Customer Support team will be happy to assist you with this. You can contact them at support@myhosting.com, or by phone at 1-866-289-5091

Cheers

markpringle
2011-07-21, 11:09 AM
I just signed up for a VPS myhosting account and need to setup my application to send emails. This is my current setup (C# ASP.NET) at my shared hosting provider:


SmtpClient smtp = new SmtpClient("mail.poetrysoup.com");
NetworkCredential Credentials = new NetworkCredential("USERNAME", "PASSWORD");
smtp.Credentials = Credentials;
smtp.Send(mail);

What's the setup @ myhosting?