Send email with attached file : Email « Components « ASP.Net






Send email with attached file

<%@ Page Language=VB Debug=true %>
<%@ Import Namespace="System.Web.Mail" %>
<script runat=server>
Sub SubmitBtn_Click(Sender As Object, E As EventArgs)
    Dim TheMessage as String
    Dim TheMailMessage as New MailMessage
    Dim TheAttachment as MailAttachment
    TheMessage = txtName.Text _
        & ": Attached to this email is the " _
        & "file you requested."
    TheMailMessage.From = "us@a.com"
    TheMailMessage.To = txtEmailAddress.Text
    TheMailMessage.Subject = "File Request"
    TheMailMessage.Body = TheMessage
    TheAttachment = New MailAttachment( _
        Server.MapPath(ddlFile.SelectedItem.Value))
    TheMailMessage.Attachments.Add(TheAttachment)
    SmtpMail.SmtpServer = "localhost"
    SmtpMail.Send(TheMailMessage)

    

    lblMessage1.Text = "The file requested has been sent " _
        & "to the email address you entered.<BR>Enter Your Name"
End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>File Request Sample Site</TITLE>
</HEAD>
<BODY>
<form runat="server">
<Font Face="Tahoma" Size="+1">
<asp:Label
    id="lblMessage1"
    runat="Server"
    Text="Enter Your Name"
/>
<BR>
<asp:TextBox
    id="txtName"
    runat="server"
    MaxLength=50
/>
<BR><BR>
<asp:Label
    id="lblMessage2"
    runat="Server"
    Text="And Your Email Address"
/>
<BR>
<asp:TextBox
    id="txtEmailAddress"
    runat="server"
    MaxLength=50
/>
<BR><BR>
<asp:Label
    id="lblMessage3"
    runat="Server"
    Text="Select the file you wish to download"
/>
<BR>
<asp:DropDownList
    id="ddlFile"
    runat="server"
>
    <asp:ListItem 
        Value="Catalog.txt"
        Text="Catalog"
    />
    <asp:ListItem 
        Value="StoreLocations.txt"
        Text="Store Locations"
    />
</asp:DropDownList>
<BR><BR>
<asp:button 
    id="butOK"
    text="Send File"
    Type="Submit"
    OnClick="SubmitBtn_Click" 
    runat="server"
/>
<BR>
</Font>
</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 out an Email
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