I have a similar problem and was wondering if anyone has a solution.
I need to have the user select just the recipients City in the dropdown and “Chicago|[email protected]” would work fine but, I also want to to include the recipients name for the message body and Mail To: to make it appear it’s directly to them.
I can achieve this with [your-recipient]<[your-cityemail]>
in Mail To: and two separate dropdown menus with the nearest location. I have one to select recipients name and the other dropdown for the email address. My problem is that there are over 100 locations and if the sender doesn’t select the same two cities, a recipient gets an email with the wrong recipient name.
This is what I want to get rid of;
<p>Select Your City<br />
[select* your-recipient
"Chicago|John Doe"]
<p>Confirm Your City<br />
[select* your-cityemail
"Chicago|[email protected]"]
and this something like I’m trying to do;
<p>Select Your City<br />
[select* your-city
"Chicago|John Doe <[email protected]>"]
The user would not see John Doe or [email protected]
from the dropdown and John Dow would show up in the message body (as a URl if needed) and John Doe & [email protected]
would go to Mail To for the mail header. It’s 3am and I hope someone can understand what I’m trying to say..