clcarson84
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Mail not going to assigned email addressI have had success with this plugin so far. My mail was being sent to my SPAM folder. Chack your SPAM folder and report as not SPAM if it is being sent there. If that doesn’t work try to send it to an alternative email and see if that works. Good luck!
Forum: Plugins
In reply to: [Contact Form 7] Mail not going to assigned email addressThank you for the response but the issue has been resolved. My mail was going into my SPAM folder.
Hi, I am not an expert with Contact form 7 but I think I can answer your question and help you out. This is how my Main Contact From is set up:
<fieldset> <label for="name">Your Name (required)<span class="red">*</span></label> [text* your-name id:name] <label for="e-mail">Email Address (required)<span class="red">*</span></label> [email* your-email id:e-mail] <label for="phone">Phone Number (optional)</label> [tel phone id:phone] <label for="message">Message (required)<span class="red">*</span></label> [textarea* your-message id:message] </fieldset> [submit "Submit"]You are welcome to copy and edit it as you please. I would recommend using <fieldset> tags and <label> tags not <div> because it is not a “form” unless it has the correct HTML tags. Also do you see how mine has, your-name, your-email, phone and your-message? This is the proper code that will carry your content over from website onto your email.
Your-subject will be set up under the “Mail” tab in your plugin’s form editor. If you have any other questions feel free to ask on here and I will try to help.
- This reply was modified 5 years, 11 months ago by Steven Stern (sterndata).
- This reply was modified 5 years, 11 months ago by Steven Stern (sterndata).
Forum: Accessibility
In reply to: Accessible Contact PluginsI found the Contact Form 7 with my own coding to be accessible.
<fieldset>
<label for=”name”>Name (required)<span class=”red”>*</span></label>
[text* your-name id:name]
<label for=”e-mail”>Email address (required)<span class=”red”>*</span></label>
[email* your-email id:e-mail]
<label for=”message”>Message (required)<span class=”red”>*</span></label>
[textarea* your-message id:message]
</fieldset>
[submit “Submit”]The spans with class=”red” I added additional CSS to make them a dark red to meet color contrast requirements.
I know this was posted 4 months ago but I ran into the same problem and believe accessibility is important to ensure online access to all.