Hi,
In the Adobe documentation, under Use Cases>Double Opt-in:
It states:
"Step 2 - Creating confirmation messages
Confirmation messages are sent via a dedicated delivery template referenced at the subscription service level.
Create a delivery template for sending the subscription confirmation messages.
Insert the confirmation link into the message content: this link lets you access the Web form to record subscription confirmation.

The syntax of the link to the subscription confirmation form looks like this:
As verified by their example:

Yet, in my Web App, I am given this code:

...which displays this code:
http://bostonscientific-stage.neolane.net/webApp/APP12
id=<%= escapeUrl(cryptString(recipient.id)) %>
So which code do I use?
The one given in the Documentation:
<a href="http://SERVER/webApp/INTERNAL_FORM_NAME?&id=<%=escapeUrl(recipient.cryptedId)%>">
...or the one given to me by the Web App:
http://bostonscientific-stage.neolane.net/webApp/APP12
id=<%= escapeUrl(cryptString(recipient.id)) %>
Notice the difference between the two:
Documentation:
&id=<%=escapeUrl(recipient.cryptedId)%>">
..and the Web App:
id=<%= escapeUrl(cryptString(recipient.id)) %>
Which one do I use? (Documentation example code or the actual Web App code?)
I spoke with two different tech support representative at Adobe and they each gave me different answers.
Thank you,
Jae