Hi,
I have following 2 links:
-
http://test.test.com/cgi-bin/honeybee/requestmassmail.cgi?wauid=<<>>&waemail=<<>>
Once I create the links, I am unable to get the value for the waemail. I am using following formula:
ClassCache := “Notes”:“NoCache”;
Lkp := @DbLookup(“”:“nocache”; “”; “vwLkpLinkNav”; “Left]”; 4);
Links:= @If(@IsError(Lkp); “”; @Implode(@Trim(@Unique(Lkp))));
HTML := Links;
URL := @UrlQueryString;
WIDString := @Trim(@Right(URL;“wauid=”));
WebLinkID := @Trim(@ReplaceSubstring(@Unique(Lkp); “wauid=<<>>”; “wauid=” + UNLkp));
WEmailString := @Trim(@Right(URL;“&waemail=”));
WebLinkEmail := @Trim(@ReplaceSubstring(@Unique(Lkp); “wauid=” + UNLkp + “&waemail=” + IELKP; “wauid=” + UNLkp + “&waemail=” + IELkp));
Web := @If(@Contains(HTML; “wauid=” + WIDString + “&waemail=” + IELkp); WebLinkEmail;WebLinkID);
Web
I have the value for the wauid and waemail for the current user, but the waemail is empty when click on the link.
I don’t know how to read each link and check to see if the string “waemail” exists then use different format.
Any help is appreciated.
Thanks
KS