Results 1 to 2 of 2

Thread: Send an Email in C#

  1. #1
    SullivanWalker is offline Senior Member
    Join Date
    Dec 2009
    Posts
    189
    Rep Power
    4

    Default Send an Email in C#

    I am learning C# programming language. I want code which can send an email .If anybody knows the various methods which can be helpful to get it, then please give me that. Thanks in advanced.
    Last edited by nitesh14; 02-06-2010 at 03:19 PM.

  2. #2
    OrtizCooper is offline Banned
    Join Date
    Dec 2009
    Posts
    186
    Rep Power
    0

    Default

    The following code works correctly. You just want to change the SMTP client settings. I have tried it. It is working rightly.

    Using System.Net.Mail;
    Using System.Net;
    private void btnsend_Click(object sender, EventArgs e)
    {
    MailMessage mail;
    SmtpClient Smtp;
    Smtp = new SmtpClient("techfuelsmtp.com", 25);
    Smtp.Credentials = new NetworkCredential("<email_id>", "abcd");
    Mail = new MailMessage("<email_id>", "<email_id>", "fsddsf", " fsddsf ");
    Smtp.Send(Mail);
    Mail.Dispose();
    }
    You also need to change the setting in web.config file.
    <system.net>
    <mailSettings>
    <smtp from="test@foo.com">
    <network host="smtpserver1" port="25" userName="username" password="secret" defaultCredentials="true" />
    </smtp>
    </mailSettings>
    </system.net>

Similar Threads

  1. Unable to send image through email
    By PerryCollins in forum General Internet Terms
    Replies: 1
    Last Post: 06-09-2010, 02:59 PM
  2. Send Email using JAVA
    By MartinWilson in forum Programming
    Replies: 2
    Last Post: 05-08-2010, 11:31 AM
  3. Send email code in PHP
    By TorresScott in forum Programming
    Replies: 1
    Last Post: 04-06-2010, 03:20 PM
  4. Unable to send image in email
    By CarterBaker in forum General Internet Terms
    Replies: 2
    Last Post: 03-30-2010, 02:01 PM
  5. How do I send a PDF file through email
    By Jashawn Petijohan in forum General Software Terms
    Replies: 0
    Last Post: 08-24-2009, 06:29 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48