Now on my TravelScream “View More Information” htm page is this link.
| To book this package contact: | Doug Offen doffen@travelonly.net |
It just populates the To: field in the email browser. It does not give me information that can be used to sort incoming emails automatically.
Code:
<table><tr><td align=”left”>To book this package contact:</td>
<td align=”right”>Doug Offen<br /><a href=”mailto:doffen@travelonly.net”>doffen@travelonly.net</a> </td>
</tr></table>
This code gets static population of the To: the Subject: and the start of the body fields for the email.
| To book this package contact: | Doug Offen doffen@travelonly.net |
That gives me subject information that can be sorted to a TravelScream mail box by subject.
If a variable could be inserted automatically (I have no idea how to code it) that would put me right on the same page as the client from the first email.
Code:
<table><tr><td align=”left”>To book this package contact:</td>
<td align=”right”>Doug Offen<br /><a href=”mailto:doffen@travelonly.net?subject=TravelScream_#&body=Please send me some more information on deal #[insert the variable]. Please add any other details, parameters or requests that might help us provide your perfect travel deal.”>doffen@travelonly.net</a> </td>
</tr></table>
Using php it might be easy to call up the data. I am no coder but I have seen it done.
Failing an automatic input perhaps a second best senario might be something like this.
| To book this package contact: | Doug Offen doffen@travelonly.net |
Code:
<table><tr><td align=”left”>To book this package contact:</td>
<td align=”right”>Doug Offen<br /><a href=”mailto:doffen@travelonly.net?subject=TravelScream&body=Please copy and paste the URL link for the Information page to which you are referring. Please add any other details, parameters or requests that you think will be useful in helping us provide your perfect travel deal.”>doffen@travelonly.net</a> </td>
</tr></table>
That would require the client to have knowledge of URL, copy and paste etc. It would be much easier to call a variable and automatically insert it in the email for the client.
Thanks

