gatitomeow
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Mail File AttachmentGreat! It worked. Thank you, My problem was leaving the brackets [ ] in the attachment.
Forum: Plugins
In reply to: [Contact Form 7] Mail File AttachmentI read that article, but I am unable to solve it. Can you be more specific? Thanks for your help.
Not with CF7.
You can add a ACCEPTANCE checkbox to ask the user to consent to their submission.
Forum: Plugins
In reply to: [Contact Form 7] What should I write in From fieldYou should send any email from the same domain where the form is hosted. Otherwise it will go to spam.
If your domain is http://www.mydomain.com then you should write:
FROM: My Domain Customer Service <info@mydomain.com>- This reply was modified 7 years, 1 month ago by gatitomeow.
Forum: Plugins
In reply to: [Contact Form 7] File did not show as an attachment on emailI am having the same problem, Neil, can you provide an example on how to add the file tag?
I tried typing in FILE ATTACHMENTS section the full file address [http://…..pdf], also [uploads/….pdf], [file uploads/….pdf] and nothing works.
- This reply was modified 7 years, 1 month ago by gatitomeow.
Forum: Plugins
In reply to: [Contact Form 7] Emails sending twiceAre you sure you did not program MAIL 1 and MAIL 2 with the same info?
Without code, it is hard to diagnose.
Forum: Plugins
In reply to: [Contact Form 7] See attached code- Why is email not working?You must program MAIL in a separate tag. Located on top of page. Your above example is is FORM tab, open the MAIL tab and write your email, best to press SAVE before doing this as all the mail-tags will be copied.
A few recommendations:
1- Ensure the outgoing email is from the same domain where you have your form. If your form is on http://www.Kickbox.com then your outgoing email should be anything@kickbox.com otherwise it will land in spam mail.
2- Use the mail-tags listed to write your email, you can even use basic HTML code, such as <h1> to highlight a header line. Don’t get too creative or it will not work.
3- Use mail-tags on the Subject to make it personal, SUBJECT: [your-want] for [your-name] ==> Will show up as “Self Defense for John”
4- Use both MAIL 1 and MAIL 2, MAIL 1 to send to the client a personalized response and MAIL 2 for you of some additional information you asked on the form that you may not want to resend to client.Hope this works.
- This reply was modified 7 years, 1 month ago by gatitomeow.
Forum: Plugins
In reply to: [Contact Form 7] Problem with fieldsTry pressing Enter twice. leaving 2 lines between one field and the next. No need for <br>.
Example: These are next to each other:
<label>Parent First Name*
[text* First_Name placeholder “First Name”]</label>
<label>Parent Last Name
[text Last_Name placeholder "Last Name"]</label>Shows up as:
Parent First Name Parent Last Name
[ First Name ] [ Last Name ]Whereas these appear in separate lines:
<label>Friday
[text Fri "4-6pm"]</label><label>Saturday
[text Sat "10a-5pm"]</label>***(There is an intentional line in between) ***
Shows up as:
Friday
[ 4-6pm ]Saturday
[ 10a-5pm ]- This reply was modified 7 years, 1 month ago by gatitomeow.