Send out an Email : Email « Components « ASP.Net






Send out an Email

<%@ Page Language="C#" %>
<%@ Import Namespace="System.Net.Mail" %>
<script runat="server">

    void Page_Load()
    {
        SmtpClient client = new SmtpClient();
        client.Host = "localhost";
        client.Port = 25;
        client.Send("s@your.com", "b@mine.com", "Hi!", "Message."); 
    }

</script>
<html>
<head id="Head1" runat="server">
    <title>Send Mail</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    Email sent!
        
    </div>
    </form>
</body>
</html>

           
       








Related examples in the same category

1.Simplest Way of Sending Email from Gmail
2.Send out email in code behind (C#)
3.Send email with attached file
4.Send email out through asp:form
5.Send email to all employees in database
6.Send email with html form message
7.Email message in a html format
8.Email form with cc and bcc
9.Email with priority
10.Send email function
11.Email with pictures
12.Email with attachment
13.Send email with more than one attachments
14.Send out an email in case of page error
15.Send an email