Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

rockford boulderdash

@rockford boulderdash
About
Posts
3
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Programming for my kids
    R rockford boulderdash

    25 years ago, I started with Logo and then moved to Basic. I loved Logo, watching the turtle move was inspiring and fun. The later move to basic was a leap ahead. I still believe this is the right way today too. MS Small Basic seems like a great start, basic programming principals, graphics, eventing, they have also includes Logo implementation which is awesome. IMHO definitely worth a try. Web: http://msdn.microsoft.com/en-us/devlabs/cc950524.aspx[^] User guide: http://download.microsoft.com/download/9/0/6/90616372-C4BF-4628-BC82-BD709635220D/Introducing%20Small%20Basic.pdf[^] Boulderdash

    The Lounge question tutorial discussion

  • plzz write a simple function on..........
    R rockford boulderdash

    He can learn a lot from the code snippest... (At least I hope :doh: )

    ASP.NET csharp asp-net tutorial

  • plzz write a simple function on..........
    R rockford boulderdash

    There you go, enjoy :) ============================================= using System.Net.Mail; public static void SendMailMessage(string sMailBody, string sFromAddress, string sFromName, string[] sToAddress, string[] sCC, string[] sBCC, string sSubject, bool IsHTML) { SmtpClient objSMTPClient = new SmtpClient("localhost"); MailMessage objMessage = new MailMessage(); try { MailAddress objFromAddress = new MailAddress(sFromAddress, sFromName); // From address will be given as a MailAddress Object objMessage.From = objFromAddress; // To address collection of MailAddress for (int i = 1; i <= sToAddress.Length; i++) { objMessage.To.Add(sToAddress[i - 1]); } // CC and BCC optional // MailAddressCollection class is used to send the email to various users // You can specify Address as new MailAddress("user@host.com") if (sCC != null) { if (sCC.Length > 0) { for (int i = 1; i <= sCC.Length; i++) { objMessage.CC.Add(sCC[i - 1]); } } } if (sBCC != null) { if (sBCC.Length > 0) { for (int i = 1; i <= sBCC.Length; i++) { objMessage.Bcc.Add(sBCC[i - 1]); } } } // Body can be html or text format if (IsHTML) objMessage.IsBodyHtml = true; objMessage.Subject = sSubject; objMessage.Body = sMailBody; // Send SMTP mail objSMTPClient.Send(objMessage); } catch { } } My blog: http://www.asaf.co.il

    ASP.NET csharp asp-net tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups