Hi,
Yesterday my client told that his Prestashop 1.6.x.x don’t send messages from the contact form. Here is what i have done to solve this:
- Edit your Prestashop contact-form.tpl which is located in
1/themes/YOUR_THEME_NAME/contact-form.tpl - Search for <div class=”submit”>
123<div class="submit"><button type="submit" name="submitMessage" id="submitMessage" class="button btn btn-default button-medium"><span>{l s='Send'}<i class="icon-chevron-right right"></i>$</div>
and add this:
12345<div class="submit"><input class="hidden" name="url" type="text" value="" /><input name="contactKey" type="hidden" value="{$contactKey}" /><button type="submit" name="submitMessage" id="submitMessage" class="button btn btn-default button-medium"><span>{l s='Send'}<i class="icon-chevron-right right"></i>$</div> - To make it work do:clear cache and recompile your theme → Save and after that undo those options – this worked for me