0
votes
0answers
6 views

Why is my AJAX/PHP/JQuery mail form always giving a success message on Wampserver, despite filters in jquery and PHP?

I've been stuck on this for a few days and have a massive headache from it: I'm trying to make a form with AJAX, JQUERY, and PHP that users can fill out and send to my email. I've put the project in ...
0
votes
0answers
6 views

Missing attachement in mail sent through Mime / SMTP Gmail Server (PHP, PEAR)

I am sending an Email from my server through SMTP Gmail using Pear's Mail Mime. However when I add an attachement it simply does not show up. $smtpinfo["host"] = "ssl://smtp.gmail.com"; ...
1
vote
2answers
37 views

Emailing CSV file with PHP

I have extracted data from my database and displayed it on a webpage in table format. I provided a link on this page which allows the user to download this data as a CSV file. This works correctly so ...
1
vote
1answer
22 views

Emailing with Attachments

Trying to accomplish this with just PHP and I'm at a snag where the HTML in the email is fine but the boundary sections appear as just normal text and the attachment wont attach. $to = ...
0
votes
1answer
50 views

$_POST not getting “name” values from HTML [closed]

I have this simple form: <form method="POST" action="/scripts/send.php"> <input type="text" name="name" /> <input type="text" name="guests" /> <textarea rows="10" cols="50" ...
0
votes
0answers
17 views

How to use the PHP mail() function on Heroku

I've a simple template with a mail form that references a php script to send a email with the mail() function. I did some research and I now know heroku does not support this out of the box, so I've ...
0
votes
0answers
24 views

Sending activation email by gmail account - not by actual domain [duplicate]

I wanted to send activation link to my users. But, I restricted users to use specific email domain to register. However, I cannot send email to that domain. Maybe because that domain blocks unknown ...
1
vote
1answer
31 views

Send E-mail if date has passed using php

I'm trying to make an online sign up sheet system. I was just wondering if when the date of the event had passed would I be able to send a list of all the people who have signed up to the event (from ...
0
votes
3answers
38 views

Form information not showing in email $POST

Here is my form: <form class="contact" id="contact"> <input type="text" name="name" placeholder="Name" id="contactname" /> <input type="text" name="email" placeholder="Email" ...
0
votes
0answers
14 views

Box slider after 1 min

working when you click "send" email to come forward with a box which read "thanks for the information." and after the box slideup again after 1min. when I click on "send" and then it just down but ...
-2
votes
1answer
24 views

Provide information to the customer immediately - rather than reload the page [closed]

I would like to give our customer beskede to have been written a beskede to person and he will be contacted as soon as possible, but at present for the page to reload. So it has to send the same time ...
-2
votes
0answers
30 views

bypass of sub rountines in php [duplicate]

In the code below I have written a php script to retrieve records from the database and send email and sms to a particular department's students of the user's choice at the front end. I have checked ...
-2
votes
0answers
25 views

CI Send Mail Not working [closed]

Hi I try to send mail using Codeigniter Email Library but the email is not receiving and i cannot print any errors $this->load->library('email'); $this->email->initialize(array( ...
0
votes
1answer
36 views

Why can't my server send outgoing email?

I've been having a lot of trouble trying to configure my server so I can send emails through PHP. I've read all the tutorials I can find but nothing seems very clear and it all assumes you have ...
0
votes
1answer
23 views

Email in loop sends the same file using Email class in Codeigniter

Hey I'm using Codeigniter's Email helpers, and expiriencing a wierd issue. I have the following code : $path = mpdf_create_billing($html); $this->load->library('email'); ...
-4
votes
0answers
43 views

Why can't I send email through PHP? [closed]

I've been trying to get my server to send an automated email when a script is run bun no matter what format I choose it just won't send. I'm thinking there is some PHP module not installed or ...
1
vote
0answers
41 views

Send email from PHP on aws EC2 via Postfix on another EC2 instance

I m trying to install a Web Server on aws Ec2 ubuntu instance to send email coming from another Ec2 instance. But I have some trouble... I use swiftmail to prepare emails $transport = ...
-2
votes
1answer
16 views

Send Mails Using PHPMailver via Office 365 Mail Exchange [closed]

i need help to set up and account on office 365 Exchange mail to sent emails via phpmailer. does anyone could know how?, i need to setup a contact form and the company has an account on Microsoft ...
0
votes
2answers
29 views

Execute a php query in an html email before sending it by the mail() function

I would like to send an item list filled with a php query in a mail... but I don't see how to set my syntaxe for get it working... <php $message = ' <html> <head> ...
-6
votes
0answers
52 views

Multiple fields email form [closed]

Im not coder can someone edit mail not coming.. This is simple mail form to register teams to tournament. Email fom there Im tray to read some information but im only desinger im not work with code so ...
2
votes
2answers
22 views

sending email to gmail in php codeigniter

I have to send email to gamil for registration of account in my website. I am using wamp ,win 7, codeigniter. And sending mail through sendmail. I have made all required changes i.e in php.ini ; For ...
1
vote
2answers
15 views

Send Acknowledge Email To Users After Form Submittal

I want to send acknowledge email to users once they contact me via my website contact form. I am able to do it in PHP by using this code: mail($to, $subject, $message, $headers); $replymsg = "Thank ...
0
votes
0answers
30 views

CakePHP - send an email to mail addresses inserted from file [closed]

I have created a web-app in CakePHP where users can insert mail addresses separated by commas and with the cakeEmail() function send them a message of their choice. (For example,this could be useful ...
0
votes
0answers
20 views

Get Customer, Company & Order data in array, json or xml format from order email of any shopping site [closed]

I have the emails of Orders from different shopping sites with different email template, I need to get data of Customer, Company & Order in array, json or xml format. Is there any API available ...
0
votes
0answers
32 views

not even with mail or phpmailer can send mails

Hy !! i have a big problem, i have an Ubuntu 10.10 with php 5.3.2, I use phpmailer to send mails and the function works like a month ago. But know, it just said, SendEmail with the php mail, or with ...
1
vote
2answers
26 views

Why can't I use data after inserting to database with PHP

Problem: I can't get the email value after inserting into the database. EDITED: Fixed: my problem were $to = $_POST['$email']; gave wrong value to it. it should be $to = $_POST['email'];. Problem ...
0
votes
0answers
11 views

Retreive email iredmail in php

I just make a script for retrieve email with php so I do not have to log in to email account. I can read the email, but when refresh, it read same message again. Mustly, after I read the first, when ...
0
votes
2answers
31 views

PHP Mail adding \ if there's a " or ' in the variables

I've made a email script that sends the users information that was filled out in our forms. But we noticed that when we send any information using " or ' that it adds a \' or \" to the email. Now I ...
-1
votes
1answer
25 views

hotmail account gets blocked after few mails [closed]

I'm trying to use live.com account for sending e-mails from my PHP web application. Everything works well, but after few mails are sent, the account gets blocked and I have to verify it with logging ...
-2
votes
2answers
20 views

mail() has been disabled for security reasons [closed]

Pls someone help me, what can possibly be the problem. Is there anyway I can enable the php mail function on the ISP web server using cPanel or any other means?
0
votes
0answers
17 views

How do I send an email using my ISP server from my localhost with PHP

I have this code: It keeps showing this error: Warning: mail() [function.mail]: SMTP server response: 550 Access denied - Invalid HELO name (See RFC2821 4.1.1.1). Please help out... $headers = ...
-2
votes
1answer
30 views

Form emailing on browser load [closed]

The form I have created below emails the input data in a CSV file. The problem I am having is every time the browser loads the page it sends a blank version of the CSV file, and once the form is ...
0
votes
1answer
23 views

Contact us form error

I am using contact us form using php and i am not well known abt php since im working in java now. I am facing one problem in contact form that is im using 1 php file and contact form html, but the ...
0
votes
1answer
19 views

BCC mails are going to Spam folder in PHP [closed]

I am using proper headers while using PHP mail() function for sending mails. Problem is all the BCC mails are landing up in SPAM folder at the recipient end. The mail header looks quite like this.. ...
0
votes
1answer
22 views

How can add email signature in codeigniter?

I have a codeigniter function to send emails.Its working fine,but the only problem is email signature id not adding to my email. I am using gmail to send email. i set email signature in gmail ...
0
votes
0answers
35 views

Remove PHP email signature [closed]

I have a PHP contact form that sends a confirmation email to the person who filled out the form, when the email is sent this is being attached to the bototm of the email. Utopia systems is the hosting ...
0
votes
0answers
9 views

Automated emails that have jqplots as attached pdfs, PHP

I'm building a help desk app on a windows server running xampp. What i'm trying to accomplish is, to have the technicians receive an email from the application with an attached pdf that has various ...
0
votes
1answer
18 views

Post FirstName/LastName to Excel CSV

I currently have a PHP email signup form widget set up to post into an excel csv. The client wanted to add in first name/ last name capture at the last minute. I can add in the fields, but the data ...
-3
votes
1answer
43 views

How to properly manage the sending of so many different bulk e-mails to the entire user base? [closed]

One of my PHP/MySQL sites is a social network and I need to send many different e-mails, including: 1) Event-based: E-mails sent when a specific action occurs on a user's account to notify them about ...
-1
votes
0answers
20 views

Validate deliverability of yahoo email address with PHP? [closed]

I'm trying to write a class that will validate email addresses without actually sending a message to the user to determine if the mailbox can receive mail or not. I'm working with the following ...
0
votes
1answer
25 views

Using PHP to send mails from my organisation's email id?

So, I developed this web application which needs me to send emails to everyone (details in a mysql database), providing a unique set of user credentials. I have a virtual server on the University ...
0
votes
1answer
15 views

Message in subject line [closed]

Just can see what I have done wrong here im geting the message in the subject line. and nothing in the message field I have very limited knowledge with php. $name = stripslashes($_POST['name']); ...
0
votes
2answers
39 views

pear mail, setting and using

I am a begginer, so please advise. Facts : try to use pear's mail and make it work. I installed pear, mail, and Net. I use Apache 2.2.22, PHP 5.3.13, Windows 7. The whole system is installed localy ...
1
vote
3answers
39 views

PHP can't send mail to webmail

I have a contact form in website that if you submit it will send to webmail. example : $isi_pesan = $message; $additional_headers = "From: ".$email."" . "\r\n" . "Reply-To: $email"; ...
0
votes
2answers
51 views

Unable to send email with PHP

Ok, I'm seriously stuck on this despite having previously asked a related question and having worked on this all morning. The problem is basic - I cannot send email using PHP from a new app I'm ...
-3
votes
1answer
61 views

PHP @mail returning false

This code is not sending email, and I'm getting no errors to indicate why. How is one supposed to troubleshoot this? $uid = md5(uniqid(time())); $headers= "From: " . $this->fromAddress . ...
-3
votes
3answers
29 views

PHP form going to different e-mail addresses depending on drop down selection [closed]

so I basically have zero experience using PHP, and I need to create a PHP form, that depending on the users' selection, will go to different e-mail addresses. For example the drop down would have ...
0
votes
2answers
26 views

Problems with more than four variables in mail() - PHP

I am trying to build a form which submit a copy to the form owner and the user. However when I try to insert a fifth variable into mail() it seems as if the last of the variables stops working: if( ...
-1
votes
1answer
35 views

Ye olde PHP email form returning blanks and no echoes [closed]

I realise this kind of question gets asked a lot, but playing around with this code and searching for answers online has yielded nothing helpful as yet, so I here we are! It's your classic php email ...
0
votes
4answers
63 views

Send an E-mail from a php code

I want to send an e-mail using a php code,I am using wampserver. an error appear : mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" ...

1 2 3 4 5 92
15 30 50 per page