Email Attachments

Email Attachments

Email compose form with attachment uploader. Files appear as compact chips below the compose area. Uses Web Forms controls for the email fields.

Drag & drop files here, or paste from clipboard
<asp:TextBox ID="txtTo" runat="server" CssClass="form-control" />
<asp:TextBox ID="txtSubject" runat="server" CssClass="form-control" />
<asp:TextBox ID="txtBody" runat="server" TextMode="MultiLine" />

<au:AjaxFileUpload ID="Uploader1" runat="server"
    AllowMultiple="true"
    AutoUpload="true"
    ShowProgress="true"
    ButtonText="Attach Files" />

<asp:Button ID="BtnSend" runat="server" Text="Send"
    OnClick="BtnSend_Click" />