Is there a variable in vb that holds the users email address when viewing the site? I'm working on an "Add To My Yahoo" option, but want to do a conditional to only show it if the user has a @yahoo. in their email address.
You'd have to find a way to parse the e-mail address, between the TLD and the @ symbol, but I only know how to parse strings in VBScript and Visual Basic 6 so sorry
$bbuserinfo['email'] is what worked for me. But in order to check if it contained @yahoo, I needed to add strpos() to the list of safe functions in vB.