Hi
I am running into a little problem with an email reporting tool for my client which I believe should be very easy but I am up against a deadline and I am hoping someone may be able to suggest the VB.Net code I need to use.
My Data looks like this;
me.textbox1.text = "bob@bigdog.com; john@fgt.com; Fred@jtx.com"
I just need to be able to strip out each email address so I can treat each of them as an individual value as follows.
Mail.To.Add = "bob@bigdog.com"
Mail.To.Add = "john@fgt.com"
Mail.To.Add = "fred@jtx.com"
Thanks for your help in advance.
Start Free Trial