Skip to content
Grav 2.0 is officially stable. Read the announcement →

Community guidelines

Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.

Installation & Hosting

Contact form on namecheap.com

plugins solved

Started by Alasdair 6 years ago · 0 replies · 2728 views
6 years ago

In case anyone else needs it, here's how to get a contact form working on namecheap shared hosting. I couldn't get mine to send using just SMTP from the Email plugin, or using Sendmail, but...

Set up an email address in namecheap cpanel -> emails

Contact namecheap support and ask them to open the SMTP ports, which are closed by default.

Install the Php mailer plugin from zip* via Admin -> Tools -> Direct install

Activate it and set:
Email from: [the email address you created]

Use these settings for the Email plugin:

Email Defaults

From address: [the email address you created]

SMTP Configuration

SMTP Server: cpanel server address - e.g server123.web-hosting.com
SMTP Port: 465
SMTP encryption: SSL
SMTP login name: [the email address you created]
SMTP password: [the password you used when you setup that mailbox]

Contact form

TWIG
process:
        - phpemail:
            # To visitor
            to: "{{ form.value.email }}"
            subject: "Thank you for getting in touch"
            body: "{% include 'forms/visitor.html.twig' %}"

        - phpemail:
            # To myself
            to: "{{ config.plugins.email.to }}"
            subject: "A message from your website from {{ form.value.name|e }}"
            body: "{% include 'forms/data.html.twig' %}"

Thanks to mickidum for this handy plugin.

* Is there a reason that it can't be found by searching plugins or installed via command line?

Suggested topics

Topic Participants Replies Views Activity
Installation & Hosting · by antoinep, 16 hours ago
5 62 10 hours ago
Installation & Hosting · by Jürgen Dietrich, 7 months ago
0 63 7 months ago
Installation & Hosting · by rappluk, 8 months ago
0 63 8 months ago
Installation & Hosting · by N, 12 months ago
3 74 12 months ago
Installation & Hosting · by Youle, 1 year ago
1 62 1 year ago