Quantcast
Channel: Active questions tagged feedback+asp.net - Stack Overflow
Viewing all articles
Browse latest Browse all 7

Sending email to the specified gmail account by the user (much like feedback page) ASP.Net C#

$
0
0

The front end

<table>
    <tr>
    <td>
        <asp:TextBox ID="rec_email" runat="server" ReadOnly="True">mymail@gmail.com</asp:TextBox>
    </td></tr>
        <tr>
    <td>
        <asp:TextBox ID="vol_name" runat="server" placeholder="Your Name" 
            Font-Names="Letter Gothic Std"></asp:TextBox>
        <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="Please enter your name" Display="Dynamic" ControlToValidate="vol_name" SetFocusOnError="True"></asp:RequiredFieldValidator>   
    </td>
    </tr>
    <tr>
    <td>
        <asp:TextBox ID="sen_email" runat="server" placeholder="Your Email" 
            Font-Names="Letter Gothic Std"></asp:TextBox>
    </td></tr>
     <tr>
    <td>
        <asp:TextBox ID="phone_num" runat="server" placeholder="Your Number" 
            Font-Names="Letter Gothic Std"></asp:TextBox>
    </td></tr>
    <tr>
    <td>
        <asp:TextBox ID="msg_text" runat="server" TextMode="MultiLine" CssClass="msg" placeholder="Message"
            Height="96px" Width="130%" Font-Names="Letter Gothic Std" Font-Size="15px"></asp:TextBox>
    </td></tr>
    <tr>
    <td>
        <asp:Button ID="btn_send" runat="server" Text="Send" CssClass="button1" 
            onclick="btn_send_Click" />
    </td>
    </tr>
    </table>
     <asp:Label ID="Label1" runat="server" Font-Bold="True" 
         Font-Names="Letter Gothic Std" ForeColor="#0099FF"></asp:Label>
 </td>
 </tr>
 </table>

So, how to receive the messages send by the user in mymail@gmail.com

PS:This is just a dummy project, so is it possible without hosting the website? Thank you :)

PPS: And yes if it is possible, if i am able to get the messages in my gmail account then is it necessary to store their data in the database through this form?


Viewing all articles
Browse latest Browse all 7

Latest Images

Trending Articles





Latest Images