| stem.Web.Mail;
namespace CodeGuru.SendMail { /// <summary> /// console application to demonstrate sending e-mail with an /// attachment. /// </summary> class TestMail { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main(string[] args) { TestMail.SendAttachment("testuser@codeguru.com", "mstrawmyer@crowechizek.com", "Test Message Using CDOSYS", "Hello World! This is a simple message sent using CDOSYS.", "c:\\myattachment.txt"); }
/// <summary> /// Send a message using the .NET wrapper for Collaborati << 上一页 [11] [12] [13] [14] [15] 下一页 |