Forum Moderators: open
strHTML = "<html><head><title>Email List</title></head>"
strHTML = strHTML & "Remove Me From Mail List <BR>"
strHTML = strHTML & "<a href=""http://www.test.co.uk/customerinfo/leave.asp?Email="""
strHTML = strHTML & ">Click Here</A>"
strHTML = strHTML & "</body></html>"
I'm not exactly sure what you're trying to do, but if you're trying to pass the email address as part of the querystring, you're missing one part... (see bolded text)
strHTML = "<html><head><title>Email List</title></head>"
strHTML = strHTML & "Remove Me From Mail List <BR>"
strHTML = strHTML & "<a href=""http://www.test.co.uk/customerinfo/leave.asp?Email=" & strEMAIL & """>Click Here</A>"
strHTML = strHTML & "</body></html>"