thank you loads!

regards



Chris Bone
Web Engineer
Chartway Federal Credit Union
http://www.chartway.com


>>> [EMAIL PROTECTED] 02/27/02 01:57PM >>>
Chris,

Try this. I extracted the code from some routines I wrote to add and remove
email addresses from a list.

Function IsListMember( cListPath, cEmailAddress )
'Author: Gary Jorgenson, RN | Robin Technologies
'cListPath: Physical Path to users.lst
'cEmailAddrress: Users email address to search for

Dim objFSO, Item
Dim objTextStream
Dim lFound

Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
Set objTextStream = objFSO.OpenTextFile(cListPath & "users.lst", 1)
lFound = False
Do While objTextStream.AtEndOfStream = False
  Item = objTextStream.ReadLine
  If LCase(Item) = LCase(cEmailAddress) Then
    lFound = True
    Exit Do
  End If
Loop
objTextStream.Close
Set objTextStream = Nothing
Set objFSO = Nothing

IsListMember = lFound
End Function


-----Original Message-----
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED]]On Behalf Of Chris Bone
Sent: Wednesday, February 27, 2002 9:26 AM
To: [EMAIL PROTECTED] 
Subject: [IMail Forum] How can I get list subscription info into .asp
pages?


Picture it....

I have several email lists including on for Interest Rate Change
Notifications

Our members are able to sign up for this list in the normal way and
everything is fine

I would like to do the following:

On my web pages I would like to "lookup" if an email address is subscribed
to a list
then prompt them... "You are currently subscribed" or "You are not yet
subscribed"

Can I access the list subscriptions through .asp ?

thanks in advance




Chris Bone
Web Engineer
Chartway Federal Credit Union
http://www.chartway.com 



Please visit http://www.ipswitch.com/support/mailing-lists.html 
to be removed from this list.

An Archive of this list is available at:
http://www.mail-archive.com/imail_forum%40list.ipswitch.com/ 


Please visit http://www.ipswitch.com/support/mailing-lists.html 
to be removed from this list.

An Archive of this list is available at:
http://www.mail-archive.com/imail_forum%40list.ipswitch.com/


Please visit http://www.ipswitch.com/support/mailing-lists.html
to be removed from this list.

An Archive of this list is available at:
http://www.mail-archive.com/imail_forum%40list.ipswitch.com/

Reply via email to