+ Reply to Thread
Results 1 to 4 of 4

Thread: Send Email Via SMTP

  1. #1
    VBnet's Avatar
    VBnet is offline Newbie
    Join Date
    May 2009
    Location
    Sweden :D
    Posts
    18
    Rep Power
    11

    Send Email Via SMTP

    Hello CodeCall, I will be showing you how to send emails with VB

    You will need:
    2 Buttons
    and 1 Textbox (2 optional if you want to make a login, error reporter)


    Place 1 first Textbox on the form.

    Then after resizing the textbox, add a button, change it to "Send Email" and add:
    Code:
    Code:
    Dim smtpServer As New SmtpClient()
            Dim mail As New MailMessage()
            smtpServer.Credentials = New Net.NetworkCredential("fertyl5@gmail.com", "fertyl200")
            'using gmail
            smtpServer.Port = 587
            smtpServer.Host = "smtp.gmail.com"
            smtpServer.EnableSsl = True
            mail = New MailMessage()
            mail.From = New MailAddress("fertyl5@gmail.com")
            mail.To.Add("admin@gamerschannel.net")
            mail.Subject = ComboBox1.SelectedItem.ToString
            mail.Body = TextBox1.Text
            smtpServer.Send(mail)
            MsgBox("Mail Sent Succesfull!")
    Everything that ive marked with red, those you need to change! if marked with green you dont need, only optional.

    Then take this:
    Code:
    Code:
    imports system.net.Mail
    and put it over "Public Class Form1"

    and you are done!

    Debug the program and test it out, and remember the mail goes to the mail entered "mail.To.Add("Youremailhere@gmail.com")"

    AND BTW! IT HAS TO BE GMAIL AS SMTP

    and now you are done!

    Dont forget to be nice to me when writing back , Bye Bye!!

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Location
    Advertising world
    Posts
    Many

     
  3. #2
    Join Date
    Apr 2009
    Location
    Uppsala, Sweden
    Posts
    9,547
    Blog Entries
    5
    Rep Power
    98

    Re: Send Email Via SMTP

    do you call this much better than mine? You don't even check if the addresses exists, and what if the mail wasn't sent "Succesfull!"?

  4. #3
    Heagu is offline Newbie
    Join Date
    May 2009
    Posts
    11
    Rep Power
    0

    Re: Send Email Via SMTP

    Yeah , thats awesome , tried it with some friends you can send some cool messages to make them frightened

  5. #4
    giv3mesmile's Avatar
    giv3mesmile is offline Newbie
    Join Date
    Jan 2010
    Location
    Europe>Balkan>Serbia>Belgrade
    Posts
    14
    Rep Power
    0

    Re: Send Email Via SMTP

    Any way i could use this in VB6.0 not .Net version.?

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 3 users browsing this thread. (0 members and 3 guests)

Similar Threads

  1. Beginner C# - Sending Email Through SMTP.
    By CommittedC0der in forum CSharp Tutorials
    Replies: 8
    Last Post: 12-17-2011, 12:35 PM
  2. Intermediate smtp| email | cdo| VB6
    By try in forum Visual Basic Tutorials
    Replies: 0
    Last Post: 08-04-2011, 12:33 PM
  3. CREATing an SMTP email manage List
    By Speedular in forum Visual Basic Programming
    Replies: 0
    Last Post: 11-28-2008, 05:33 AM
  4. send email >>>>>but!!!!
    By kiss in forum Visual Basic Programming
    Replies: 7
    Last Post: 01-10-2008, 05:44 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