| View previous topic :: View next topic |
| Author |
Message |
electricpet
Joined: 25 Oct 2011 Posts: 1
|
Posted: Tue Oct 25, 2011 11:31 am Post subject: reply email with data not working |
|
|
For each email that is sent in html format, the recipient can respond to the email by clicking on a link. For some reason or other, this code used to work, but has stopped recently... any ideas?
<p style="font-family: Calibri;" class="style8">
Respond to this email.<span style=""> </span>Click<a
title="send order by email"
href="mailto:order@magneticsprings.com?subject=Water%20Order%20%5B%5BACCOUNT%5D%5D">
<b style="">here</b></a> to respond.</p>
This is what comes back as the subject line:
RE: Water Order [[ACCOUNT]]
an actual account number should show up! |
|
| Back to top |
|
 |
beiley Site Admin
Joined: 09 Nov 2006 Posts: 314
|
Posted: Tue Oct 25, 2011 11:43 am Post subject: |
|
|
Hi electricpet,
You don't want to encode the double square brackets in your HTML if you want the mail merge to work. Change:
%5B%5BACCOUNT%5D%5D
to
[[ACCOUNT]]
in your HTML file, and then the mail merge will work.
Mark |
|
| Back to top |
|
 |
|