Click to See Complete Forum and Search --> : disabling email capacity


dawnjulie
05-12-2003, 02:00 AM
I'm stumped!

Am working on a online dating site and am trying to figure out how to disable email sending for non-members and enable it for paying.

I see this on all the online personals sites and yet I can't come up with how it's done. If anyone knows, would sure appreciate some help.

thanks :-)

Dawn
dawn_julie@hotmail.com

Bullschmidt
05-12-2003, 03:39 PM
Example:

On the login page set this:
Session("IsMember") = "Yes"

And on the page to do the e-mail:
If Session("IsMember") = "Yes" Then
[Code to send the e-mail]
Else
[Code to say can't send e-mail]
End If