Reputation: 51
It's my contact form 7 configuration Mail
To
[email protected]
From
[your-name] [email protected]
Subject
[your-subject]
Additional headers
Message body
From: [your-name] <[your-email]>
Subject: [your-subject]
Message Body: [your-message]
This e-mail was sent from a contact form on [_site_title] ([_site_url])
When I received mail any content is not showing some like
From: Hammad <[your-email]> Subject: [your-subject]
Message Body: [your-message]
This e-mail was sent from a contact form on Bilal Asghar (https://portfolio.truishop.com)
How to resolve this issue
Upvotes: 0
Views: 1400
Reputation: 66
Your input name is different than what you are using. You need to use the same input name as you are using in the form. For your case, use below code in the message box
[your-name] [email protected]
Subject [subject]
Additional headers
Message body
From: [your-name] <[email]> Subject: [subject]
Message Body: [message]
This e-mail was sent from a contact form on [_site_title] ([_site_url])
Upvotes: 0