Wednesday 24 November 2010 3:39:22 am
"
Hi Daniele, and welcome to the eZ Community ! One thing you may take a look at, a sort of "hackish" solution : http://share.ez.no/forums/developer/user-confirmation-email-for-collected-information Another way would be to override one (check which one is used) of the following templates :
- design/standard/templates/content/collectedinfomail/form.tpl
- design/standard/templates/content/collectedinfomail/feedback.tpl
Let us know how it goes ! Cheers,
"
Thanks so much for your answer :) The custom template of the form i would like to enhance has the following code about button:
<div class="content-action">
<input type="submit" class="defaultbutton" name="ActionCollectInformation" value="{"Send form"|i18n("design/ezwebin/full/feedback_form")}" />
<input type="hidden" name="ContentNodeID" value="{$node.node_id}" />
<input type="hidden" name="ContentObjectID" value="{$node.object.id}" />
<input type="hidden" name="ViewMode" value="full" />
</div> and the tpl which address is design/ezwebin/full/feedback_form contains the doce
<div class="content-action">
<input type="submit" class="defaultbutton" name="ActionCollectInformation" value="{"Send form"|i18n("design/base")}" />
<input type="hidden" name="ContentNodeID" value="{$node.node_id}" />
<input type="hidden" name="ContentObjectID" value="{$node.object.id}" />
<input type="hidden" name="ViewMode" value="full" />
</div> Both of these template are overriden. So i'm not able to get the point of where i should include an operatore to handle the new e-mail content and addresses. =/
|