Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
I tried to put the input field and entered the value while sending the email but those values are not embebed with the email.
Am I doing something wrong?
Here is my code.
<messaging:emailTemplate relatedToType="Opportunity" subject="opportunity report for : {!relatedTo.name}"><messaging:htmlEmailBody ><html><body><table > <tr> <th> Name </th> <th> CloseDate </th> <th> Stage Name </th> <th>test</th> </tr> <tr> <td>{!relatedTo.Name}</td> <td>{!relatedTo.CloseDate}</td> <td>{!relatedTo.StageName}</td> <td><input name="test" type="textbox" maxlength="20"/></td>
</tr> </table> </body></html></messaging:htmlEmailBody></messaging:emailTemplate>
I don't think you can send values like this. You can only use merge fields to do so.
Thanks
Ankit Arora
Blog | Facebook | Blog Page
Here is the reference post for more information :
http://boards.developerforce.com/t5/Visualforce-Development/Visualforce-Email-Templates-Input-Field-Help/td-p/97549
I tried to put the input field and entered the value while sending the email but those values are not embebed with the email.
Am I doing something wrong?
Here is my code.
<messaging:emailTemplate relatedToType="Opportunity" subject="opportunity report for : {!relatedTo.name}">
<messaging:htmlEmailBody >
<html>
<body>
<table >
<tr>
<th> Name </th>
<th> CloseDate </th>
<th> Stage Name </th>
<th>test</th>
</tr>
<tr>
<td>{!relatedTo.Name}</td>
<td>{!relatedTo.CloseDate}</td>
<td>{!relatedTo.StageName}</td>
<td><input name="test" type="textbox" maxlength="20"/></td>
</tr>
</table>
</body>
</html>
</messaging:htmlEmailBody>
</messaging:emailTemplate>
I don't think you can send values like this. You can only use merge fields to do so.
Thanks
Ankit Arora
Blog | Facebook | Blog Page
Here is the reference post for more information :
http://boards.developerforce.com/t5/Visualforce-Development/Visualforce-Email-Templates-Input-Field-Help/td-p/97549
Thanks
Ankit Arora
Blog | Facebook | Blog Page