Tagged Questions
0
votes
2answers
26 views
Filter/Remove Blank Form Variables with PHP for Email
I have pieced together some PHP code below that creates a nice HTML email from an Ajax form submission, complete with a table. However I would like to remove any blank, non-required variables from ...
-5
votes
1answer
72 views
Sending HTML e-mails from PHP [closed]
MYSqL works fine but I do not get emails why?
<?php
//include the connection file
require_once('connection.php');
//save the data on the DB and send the email
...
0
votes
2answers
47 views
Php form duplicates emails
I have a php form that only sometimes duplicates received emails. I have triple checked the code and there is nothing that might make a loop. I have also made a session that prevents identical ...
0
votes
2answers
63 views
Pass File via mail() PHP
I have a Problem, I would like to send a File (Photoshop, .gif etc.) File via Email with PHP.
I POST the Data from the HTML Document to the following PHP File.
The Problem: I receive the Email but the ...
0
votes
3answers
258 views
gmail ignoring emails from a php contact form
We use a php email form on a website, it works fine when delivering email to other email programs, just not gmail, ive checked the spam and the inbox, but i get nothing, its as if gmail dosnt trust ...
0
votes
4answers
489 views
PHP email script with custom mail body
I'm using a PHP email script for a contact form. There are six fields for the form:
Name
Email
Phone number
Booking Date
Booking Time
Comments
There's also a hidden honeypot field for robotest. ...
-1
votes
4answers
95 views
PHP mail form - not posting a variable [closed]
Everything but 1 (one) variable seems to be working on my mail form. On my HTML page I have a form with a select box, some text inputs and a textarea for the message. Everything besides the message ...
0
votes
2answers
110 views
Show a form's response in browser instead of Lotus Notes Tab
this is the first time I work with email forms for Lotus Notes - should the answer be too simple, please forgive me.
What I do is sending an HTML mail with a FORM. Usually Notes opens URLs in such ...
-3
votes
2answers
96 views
PHP: 'syntax error, unexpected T_STRING' with mail()
I have a simple script that just mails with PHP:
mail( "$webmaster_email", "RSVP from WC Entry Form",
"From: $email, \n Name: $firstname $lastname \n
Phone Number: $phone \n
Address: ...
2
votes
3answers
180 views
sending a form email to a .cc email
I am working on an email form.
I wondered if there was a restriction on sending php emails to email addresses such as info@domain.cc emails? The .cc is the ending url. Will this affect it?
Any help ...
-2
votes
2answers
228 views
My form php is not working and I can't figure out where I went wrong
I'm fairly new to all this, but I've created a form, and this is what I've written to send it. I've used "example@gmail.com" here instead of the real address
<?php
/* Set e-mail recipient */
...
0
votes
1answer
8 views
Return a copy of an order to the orderer as well as sales
I have an order form that needs to email a copy of the order to the dealer, as well as to customer service for fulfillment. It needs to pick up the dealer's email off of the form field. ...
0
votes
1answer
80 views
code won't populate email
created a simple little php code to populate email with email address and info from a textbox on the form. it originally worked when I was calling to the script from a html form, but once I converted ...
0
votes
1answer
219 views
Create Contact Form Without Backend?
I am using a free web host that doesn't support back end code. I am wondering if it is possible to create a contact form without back end support?
I have tried doing the following, but when I submit ...
0
votes
2answers
74 views
How do I connect an email to a form in Rails?
I am making a website using Rails and am making a contact page and want to have a form that is connected to an email. I have the form made but I don't know how to connect it to Rails.
Any code with ...
0
votes
2answers
67 views
Sending contact for to different server/domain before sending
I have two websites and I would need to make a contact form on other of the sites. But the PHP that actually sends the mail is on other server.
So the form is on www.domain1.com/contactform.html / ...
0
votes
1answer
89 views
How do I send formated html emails?
I have a page where a user can "share" the page with other people. I want the email to be formatted with html.
I'm using javascript to send the email. Any Idea's?