Author Topic: Custom User tags within return url field..  (Read 1818 times)

richardwing

  • Posts: 39
    • View Profile
Custom User tags within return url field..
« on: November 12, 2007, 09:29:08 am »
I know I can post custom data on signup but can I on return from LMP have the data return to a outside return page.

In other words can I use the usertags inside the return url field that I set up for my list.

Richard Wing
Richard Wing

"Give a man a fish, feed him for a day. Teach a man to fish and you can sell him all kinds of fishing equiptment!" ;)

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
Custom User tags within return url field..
« Reply #1 on: November 13, 2007, 02:23:27 am »
Richard,

Unfortunately this is not yet possible.  If you're semi-familiar with PHP programming you might consider the signup-xtra.php script in the ListMail /xtra folder.

Some code like this might do it:
Code: [Select]
if($list==5){
 // forward to my custom page
 $url="http://example.com/custom.html?fn=".urlencode($fname). "&ln=".urlencode($lname)."&em=".urlencode($email);
 header("Location: $url");
 exit;
}

Please let me know if I can be of further assistance.

Regards
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting