Send mail through ASP Page..........
-
Hi All, In my application I want to send mail onto the gmail through my ASP Page. If its posible plz help me. thanx & Regards: SMK
-
Hi All, In my application I want to send mail onto the gmail through my ASP Page. If its posible plz help me. thanx & Regards: SMK
ASP.NET has mail classes, but they rely on a pop3 server. ASP has nothing of value. So, if you're using ASP.NET, you can send mail, but not through gmail. If you meant just ASP, then no.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
ASP.NET has mail classes, but they rely on a pop3 server. ASP has nothing of value. So, if you're using ASP.NET, you can send mail, but not through gmail. If you meant just ASP, then no.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
Christian Graus wrote:
ASP.NET has mail classes, but they rely on a pop3 server. ASP has nothing of value. So, if you're using ASP.NET, you can send mail, but not through gmail. If you meant just ASP, then no.
If it's only for sending email, ASP.NET can use System.Net.Mail classes including SmtpClient class. For classic ASP and hosted on Windows 2000 servers, you can use Microsoft Windows CDO (Collaborative Data Object) to send email. For more information on CDO, visit this link: http://msdn2.microsoft.com/en-us/library/ms527525.aspx[^] regards, Eriawan :)