Tagged Questions

The PHP mail() function is used to send emails from inside a script. So questions regarding PHP mail() function categorized on this tag

learn more… | top users | synonyms

5
votes
5answers
2k views

sending +-200 emails using php mail() function in a loop

Note: It is worth noting that the mail() function is not suitable for larger volumes of email in a loop. This function opens and closes an SMTP socket for each email, which is not very ...
3
votes
2answers
99 views

PHP mail() docs say that I should only use LF in the body, but RFC 5322 says otherwise. wtf?

PHP manual (http://php.net/manual/en/function.mail.php) says: Each line should be separated with a LF (\n). Lines should not be larger than 70 characters. But actual RFC 5322 gives totallty ...
3
votes
7answers
239 views

Paypal IPN and mail() function

I have my paypal IPN listener configured properly since it writes all the information to the DB when a new payment comes in. Now I'm trying to setup a mail() function that sends me an email alert of a ...
3
votes
3answers
83 views

Is it possible to only allow PHP mail to send to certain email address's at a php.ini level

Whenever I'm doing development on a site which sends emails to users I have to remember to comment out the mail() code so that I don't accidentally trigger the notification email whilst fiddling ...
3
votes
3answers
330 views

My server and php mail() function sends email to the spam folder

is there any way i install SMTP service on my Linux server and use php to send emails through it ? so that emails doesn't show up as spam ? maybe through ssl ? my mail() function is perfect , with ...
2
votes
2answers
43 views

My Emails sent through PHP shows as tags only for a few recipients (sending a few hundred)

Im sending out an order conformation for recipients via the simple mail function built into PHP, and this works fine. It's a "nice" email set up in tables and a few styles with the details in it ...
2
votes
2answers
102 views

Contact form submit script - HTML email problem

I have a contact form script and when the user submits it, they get an email and I get one. But there's a problem with the "message" textarea in the HTML email. It puts it all in one line. See how I ...
2
votes
2answers
1k views

EC2 - Fresh PHP install - Mail not working

I am getting familiar with Amazons EC2. I installed a LAMP setup but when I try to send emails through the mail() function that I have in my pages it does not work. I checked and sendmail is running ...
2
votes
4answers
308 views

Why php mail() require mail program like sendmail/postfix/etc.. for sending emails?

Why php mail() require mail program like sendmail/postfix/etc.. for sending emails? I asking because sending email is client action and not something that need to run server. Edit: why is soo ...
2
votes
2answers
1k views

Gmail mark as spam email with html and anchor links

first of all, sorry for my bad English =( I created an HTML email, send it to yahoo, hotmail and gmail, the first and the second work's ok, received in the front of the inbox, but, the gmail mark as ...
2
votes
3answers
318 views

phpmail always go to spam

how to optimize php_mail() w/o sending the email to a spam? everything that my webpage is doing sends the email into spam?how to make it not go to spam??
1
vote
2answers
117 views

Mass mail using PHP from my web application

I had a web application in PHP which hosted in GoDaddy server . The site is a type of movie database and discussion . I have to send mass mail to my registered users from my application. For eg. at ...
1
vote
0answers
93 views

php mail function with gmail [closed]

Possible Duplicate: Send email using GMail SMTP server from PHP page I have been trying to send a mail to my own gmail address using php's mail function. I wanted to know how it really ...
1
vote
0answers
37 views

PHP mail out late or when Apache server rebooted

I used to have php mail out right away, now however it might be changes in php code on page, or fact that i changed servers. Mail out like 10 minutes after user register, but if i go and restart ...
1
vote
1answer
84 views

Sending images through php mail function

Having Problem sending images through php mail function. I have used tiny MCE as a text editor for mail body and pasted some images into the body and some text. All content with images are displayed ...
1
vote
0answers
97 views

PHP Mail Postfix

I have a PHP program using the mail() function. I have this running on a Linux server. Normally it is setup to run over the Linux sendmail function but my machine is setup to use Postfix. Can I use ...
1
vote
2answers
88 views

php html email help?

I'm using below code for php html email: $to = $email; $subject = 'ABC'; $message = $content; $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; ...
1
vote
1answer
44 views

CakePHP Sending Email - LAMPP

I am attempting to send an email using Cake's 'Email' component. I have included the component into my controller and I am using the following code to try send an email. $this->Email->from = ...
1
vote
1answer
357 views

PHP: mail() attaching base64 image comes out as text

I have been trying to encode an image as base64 then sent it as an email attachment using php mail(), but all I am getting is the base64 text in my email. Here is what I am using: $boundary1 = ...
1
vote
5answers
681 views

How do I specify to PHP that mail() should be sent using an external mail server?

I have my email hosted at Rackspace Email and would like to use that as my mail server for the contact form on my website. Looking at the php.ini file, I'm only able to specify the sendmail_path on ...
1
vote
1answer
349 views

PHP Mail - UTF 8 Encoding problems with Chinese characters

I have a PHP Mail script that sends out emails and I need to send some out in Chinese. I have the following code: $email_header = "From: $from\n"; $email_header .= "X-Priority: 1\n"; //1 ...
1
vote
3answers
889 views

PHPMailer or SwiftMailer? [closed]

Possible Duplicate: PhpMailer vs. Swiftmailer? I have always used PHP's built in mail() function and it has always worked for me without fail and does the job i want it to. Now some maybe ...
1
vote
3answers
227 views

Alert not working while Sending mail in php

I have developed a simple php application. This application contains one html file and one php file. What i am doing is when user selects two dates and enters his/her email addresss, i am calling my ...
1
vote
2answers
578 views

Syntax error, unexpected T_SL

I'm fairly new to php and I'm using a script that creates a function called the "mime_mailer" which essentially allows me to use PHP to send emails that are able to be designed with CSS instead of ...
1
vote
3answers
218 views

how to send mail using PHP?

i am using php to develop a website. i want to add mailing functionality to my website. i have wamp server installed in my computer. how do i send mail using php? thank you in advance.
1
vote
3answers
138 views

PHP mail function problem

Hi I am using php mail function to send mails from my contact section. But the mails are not geting me. If i use gmail id its working but if I use any other email ids like hr@sbnphpjobs.com not ...
0
votes
4answers
53 views

PHP mail() not sending, but no exception thrown

I'm using CakePHP to send an email. My controller code looks like: if ($this->User->save($this->request->data)) { $email = new CakeEmail(); ...
0
votes
1answer
16 views

html data not sent when file attachement in php mail

I am working on attachment of mail in php $header .= "Content-Type: multipart/mixed; boundary=\"".$uid."\"\r\n\r\n"; this only attach a file to mail. $header .= "Content-type: text/html; ...
0
votes
2answers
43 views

html link in php mail?

So I have this line in my php form processor: $automessage = 'Thanks for requesting a sample from us! We have received your information, so please expect your sample shortly. In the meantime, be sure ...
0
votes
0answers
25 views

PHP mail function - Unable To Detect Error

I built a set of scripts which are run using server cron jobs, the scripts basically handle the sanitization and optimization of the large databases the website is accumulating. The main table has ...
0
votes
1answer
47 views

handling bounce email w/phpmailer

I have a webpage that sends out emails using phpmailer. I set the host to 'relay-hosting.secureserver.net' the mail->sender, mail->from and mail->addReplyTo all to the same address, which is the ...
0
votes
1answer
43 views

PHP mail and Lines should not be larger than 70 characters

I can't understand this line from the official documentation of mail function in PHP: http://php.net/manual/en/function.mail.php Each line should be separated with a LF (\n). Lines should not ...
0
votes
1answer
33 views

Why is the mail() function sending an email with body “0”?

This is being sent via Ajax. Here's the JS: $.ajax({ url: objCommon.ajax, type: 'POST', data: {type:'feedback', msg:$('.commonsFeedbackDiv').text(), url:window.location.href}, ...
0
votes
1answer
36 views

Adding an attachment to this mail form

I have this simple php mail form. It is working and I can use it for making my forms, but I have a problem: I want to add 2 or 3 attachments to this form. I tried a lot reading about mail at php.net, ...
0
votes
0answers
23 views

Optimize generation of attachment list of an email account

I have written a code (using PHP mail examples from this site) to generate a list of Attachment filename & size. The code works fine but it takes about 10min to create the whole list (about 6k ...
0
votes
3answers
43 views

Can't receive emails send from php

I have set up several email accounts on my vps hosting but I can't receive any emails that are send via php from another hosting. Everything works fine when I send emails from gmail for example, I ...
0
votes
2answers
47 views

Phpmailer dropping name value on html emails, but working with plain text?

I am using phpmailer to send out newsletters, It seems to work out and sends out plain text emails ok, but for some reason when sending html emails drops the persons name, where as plain text works ...
0
votes
1answer
35 views

PHP Mail not formated for some reason

I am new to PHP and send an email using following code <?php $to = 'to@xyz.com'; $subject = 'the subject'; $message = '<table dir="rtl"><tr><td>'. "\r\n"; $message .= ...
0
votes
3answers
63 views

PHP mail() sends emails using “anonymous@…”

I have tried the following with little success: $fromEmail = "something.com <noreply@something.com>\r\n"; $headers = 'From: '.$fromEmail; $headers .= 'Reply-To: '.$fromEmail; ...
0
votes
4answers
42 views

Hide server when sending email from mail php function

All, I have the following code: $to = $friend_email[$x]; $subject = "Subject"; $message = "This is a message"; $from = $your_email; $headers = "From:" . $from; mail($to,$subject,$message,$headers); ...
0
votes
1answer
126 views

PHP mail() on localhost with Comcast's SMTP Server not working

I'm trying to use the mail() function on my computer so I can test the web application's system emails that I'm building for someone. In the php.ini file I changed sendmail_sender to my email address. ...
0
votes
2answers
56 views

mail function not working in php

When I send mail to "gatbajrang@gmail.com", it's working fine. But when I change email address "gatbajrang@gmail.com" to "bajrang.lal@sunarctechnologies.com" then the mail has not been send, I could ...
0
votes
1answer
59 views

PHP form mail and register globals

I have a form and php processing file, and everything seems to be working fine except that the user-entered variables are not showing up in the emailed form results. From the research I've done (I'm ...
0
votes
2answers
50 views

Wordpress Php auto email to comment author

I'd love to be able to automatically send a response to the person who comments on a post on my site. Their email is required so I feel as though I should be able to grab that and use php to send an ...
0
votes
1answer
73 views

PHP Mail Script working but email not arriving

I've written the following PHP script to send an email based on a forms input: <?php $to=$_POST["email"]; $subject=$_POST["subject"]; $message=$_POST["message"]."<br />".'<img ...
0
votes
2answers
23 views

PHP Mail containing Images from a Directory

Trying to have a PHP script send an email that contains two images that the user is pre-selecting from a previous page (out of a select element). I'm not quite sure how to accomplish the image ...
0
votes
2answers
24 views

How can I hide the 'to' field in the email sent by php mail

I am using php mail function to allow user to send me a mail from website. I am also allowing them to "cc" the email to themselves. The whole purpose of making a "send us message" feature was not ...
0
votes
0answers
48 views

Email forwarding via PHP

I am creating a free forwarding email address system and asked a little while ago about this. What I would like to do is forward an email to the persons real email address while keeping the headers ...
0
votes
1answer
60 views

how to debug php mail?

a simple script simple mail function i called in my localhost and live server. $message = "Line 1\nLine 2\nLine 3"; $message = wordwrap($message, 70); $rs = mail('myemail@gmail.com', 'My Subject', ...
0
votes
0answers
34 views

What will happen if I would send an email to 1000+ recipients through PHP?

I have a large database of email addresses (1000+). I would like to send all of those email accounts a message. I use would like to use PHP mail() for this job. Is this possible? Will this work? ...

1 2