help me with newsletter
-
hi. I am tring to make a newsletter, which people can join and subscribe by email and then, email will be sent to them to notify the updated new ... I have created textbox and ... So I can collect emails into my database. but I dont know how to send them email... I know alittle about sending email but my problem is that I want to send one email to 50 people or more ...So I need a loop but I dont know the code. please tell me.thanks
-
hi. I am tring to make a newsletter, which people can join and subscribe by email and then, email will be sent to them to notify the updated new ... I have created textbox and ... So I can collect emails into my database. but I dont know how to send them email... I know alittle about sending email but my problem is that I want to send one email to 50 people or more ...So I need a loop but I dont know the code. please tell me.thanks
foreach(User user in User.Collection) { Message.To += user; }
only two letters away from being an asset
-
foreach(User user in User.Collection) { Message.To += user; }
only two letters away from being an asset
-
user.collection is the collection of users you would like to send emails to. :doh: You should know how you are storing and maintaining this collection.
only two letters away from being an asset