ListMailPRO Email Marketing Software Forums
ListMailPRO Email Marketing Software Forums => General Help & How-To => Topic started by: BoomPop on May 28, 2008, 01:19:13 pm
-
I don't think there's been a definitive answer on this... is it possible to pass along variables/data to the "Alternately, enter a URL to forward the user to" URL? Something like:
http://www.mysite.com/listmail/thankyou.php?name=!fname&email=!email
I know that the xtra-php thingy is available, but probably over my head. :)
-
No, this is currently not possible. You should, however, be able to use the included signup-xtra.php file to accomplish this.
if($list=='1'){
header('Location: /mypage?e='.urlencode($email));
exit;
}
Regards
-
Hmm. that's very interesting and COOL! thanks for the reply, Dean!