<? /* Main include info */ ini_set('include_path',"/usr/web/sites/tuve.tv/include/"); include("site.inc"); $query = "SELECT firstname,lastname,email,active FROM users WHERE active = 1";// AND email like 'cwolsen@domainatlantic.com'"; $res = mysql_query($query); $subject = "TUvé News Update, May 2nd 2008"; for ($i = 0;$i < mysql_num_rows($res);$i++) { $fName = mysql_result($res,$i,'firstname'); $lName = mysql_result($res,$i,'lastname'); $email = mysql_result($res,$i,'email'); $active = mysql_result($res,$i,'active'); $message = "Dear $fName,<br><br>Before we tell you about all the wonderful things happening with TUvé, we first want to thank you for your support and loyalty throughout our development process. We understand that there have been times where it has been a bit difficult to use TUvé, but you have stuck by us and we greatly appreciate that. Thank you!<br><br>Starting May 15<sup>th</sup> we're going to be running our first incentive program. This will be your chance to earn a FREE webcam, that's right FREE webcam. These webcams are very stylish and full of features such as video overlays and night vision lights. You will be receiving an update early next week, however it's quite simple all you have to do is refer 10 of your friends and have them set up their profile. Once all ten registrations are complete the webcam is yours.<br><br>Over the past month we've had our developers locked up in a very small room with nothing but their workstations and the pizza and beer we slipped under the door. In that time they have managed to add several new features to the site. These features are outlined below.<br><br><ol><li><b>E-Mail System</b> - To get into your e-mail just click the \"My Email\" link at the top of your TUvé page. This will open up the e-mail interface which will allow for you to read your mail, send mail, replay to mail and so on. Now to alleviate some confuse when composing new mails you can not type in a user name. As we try to take every effort to keep TUvé secure and rid of spam your to field is a list automatically populated with your buddies, this means that you can send mail to anyone on your buddies list on the Tuve network</li>\n<li><b>Live Broadcasting</b> - To start a broadcast all you have to is click the \"Broadcast\" link at the top of your TUvé page. This will open up the broadcasting interface. From here you can choose to do things such as picture in picture or full screen as well as choose to record your broadcast for future reference.</li>\n<li><b>Widgets</b> - We now have a built in widget system. This system allows for us as well as third party developers to build applications which can fully interact with the TUvé network. If you click the \"Widgets\" link at the top of your TUvé page you can use some of the widgets which we have provided for you. Some of the widgets provide are a CNN news reader, Paint program and a real-time multi-user white board (this rocks!).</li>\n<li><b>Buddy List</b> - Now you have an easy way to see who you're buddies are, add new ones and even delete some old ones. Click the \"My Buddies\" link at the top of your TUvé page to open this interface.</li>\n</ol><br><br>For your convenience under there Control Center we have provided a feedback tab. Please feel free to use it as often as you want. We love to hear from you with all of your suggestions, comments, and problem reports. Your feedback is sent instantly to our staff and gets reviewed in a timely manor.<br><br>For those of you who haven't had a chance yet, when you have a free moment please login and set up your profile. It's simple and will help enhance your TUvé experience. All you need to do is click the .My Profile. link at the top of your TUvé page. You can upload a photo or choose from one of our provided avatars, you can set up your location, type in a caption even put in some information about you.<br><br>The TUvé Team<br>support@tuve.tv<br><br>\n"; send_mail("$fName $lName <$email>",$message,$subject,"support@tuve.tv","TUve Support"); } ?>