Click to See Complete Forum and Search --> : Auto Email and SMS, Graphics


gorgeous
August 16th, 2002, 01:41 AM
Hi friends,

How can I send e-mail to user accounts and SMS to mobiles from my VB.Net appplication and Web application automatically at an event. pls provide the details, how can i implement this in my application.


Second How graphics is supported (Like MSChart controlof Vb6)and other graphics?


Pls provides the details and reference about these.


Regards

DSJ
August 16th, 2002, 10:25 AM
.NET has two classes for handling email "internally"... MailMessage and SMPTMail. The MailMessage class is the message and the SMPTMail class is used to send it (as you can probably guess, it uses the SMTP protocol). Other than that, you can also send mail the same way you would in VB 6.0 as you can reference/use any COM componets just like before.

As far as graphics, there are several classes that you can use to do your own graphs/charts, far simpilier than in VB 6.0, or once again, if you're familiar with a particular control in VB 6, just use it in .NET.