felixtkatt
Programmer
I find this curious and can't figure out what is going on. Perhaps the email server I am using causes the problem, but I can't tell. Perhaps someone here can.
I want the "mail_to" field to populate automatically based upon the message retrieved. However, the input tag is not populating with the "replyto" message data.
When I tried to replace the variable "replyto" with "from", it freaked out the page and wouldn't process the rest of the input tag. Here's an abreviation of the code:
<cfpop
server="#pop_server#"
username="#pop_username#"
password="#pop_password#"
action="getall"
messagenumber="#messagenumber#"
name="message"
>
a little later...
<tr>
<th align="right" bgcolor="115e55">to:</th>
<td bgcolor="669966"><input type="text" name="mail_to" value="#trim(replyto)#" size="55"></td>
</tr>
When "replyto" in the Trim function is replaced with "from", the page displays a text input field of default length and has " size="55"> next to it.
Can anyone tell me what causes this phenomenon and/or how to get that mail_to field to automatically populate from the cfpop query? Thanks a bunch.
FelixTKatt
I want the "mail_to" field to populate automatically based upon the message retrieved. However, the input tag is not populating with the "replyto" message data.
When I tried to replace the variable "replyto" with "from", it freaked out the page and wouldn't process the rest of the input tag. Here's an abreviation of the code:
<cfpop
server="#pop_server#"
username="#pop_username#"
password="#pop_password#"
action="getall"
messagenumber="#messagenumber#"
name="message"
>
a little later...
<tr>
<th align="right" bgcolor="115e55">to:</th>
<td bgcolor="669966"><input type="text" name="mail_to" value="#trim(replyto)#" size="55"></td>
</tr>
When "replyto" in the Trim function is replaced with "from", the page displays a text input field of default length and has " size="55"> next to it.
Can anyone tell me what causes this phenomenon and/or how to get that mail_to field to automatically populate from the cfpop query? Thanks a bunch.
FelixTKatt