The `mail()` function allows you to send mail in PHP.

learn more… | top users | synonyms

6
votes
5answers
3k 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 ...
6
votes
4answers
2k views

Having trouble with PHPMailer

I am trying to use PHPMailer to send a gmail email. I followed this post In order to do this, I set up a function shown below: function sendEmail($email, $name) { $mail = new PHPMailer(); ...
5
votes
1answer
687 views

Php Mail going to recipients spam /Junk Folder [closed]

I am working for my college website . I wrote a php script ,that sends email using php mail function. But the problem is ,all the emails that I send is going into the recipients spam /Junk Folder. In ...
5
votes
3answers
84 views

Quoting/Escaping variables in mail body

I am feeling a bit awkward, because I am generating a mail-body with PHP without escaping the variables. In HTML I am using htmlspecialchars() or similar functions, for command lines escapeshellarg(), ...
4
votes
5answers
696 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 ...
4
votes
3answers
135 views

PHP mail() - How to put an html link in an email? [duplicate]

I'm sending an email via PHP's mail() function. In the message I set a link that looks like this: $message = "<a href='". $link. "'>" .$title. "</a>\n\n"; However, when the email is ...
4
votes
5answers
5k 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 ...
4
votes
2answers
1k views

How does PHP's `mail` work?

PHP's mail function seems to deliver mail on a clean system, with no apparent configuration done by the administrator or webmaster (no SMTP configuration in php.ini, etc.). How does the mail function ...
4
votes
5answers
520 views

PHPMail sending attachment but they are empty

Basically, I am trying to send a PDF via PHPMail. the email is sent and I receive it in outlook perfectly. the problem is that the attachment is broken and it doesnt open. I even tried sending a HTML ...
4
votes
7answers
413 views

Paypal IPN and mail() function

UPDATE: (2/29/12) Okay, so I've run into this same issue again for a different client on a completely different server and hosting company. Again, having a script with just mail() sends out the email ...
4
votes
6answers
767 views

PHP Mail sent from localhost to server

I want to send an email from localhost to gmail server forexample (anydomain@gmail.com). Code sample is: <?php $to = "thisizraheel@gmail.com"; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; ...
3
votes
3answers
4k views

PHPMailer or SwiftMailer? [duplicate]

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 ...
3
votes
2answers
54 views

PHP: view unsuccessful emails

I'm trying to figure out how to display a list of unsuccessful emails sent and a way to test it out. I can display a list of the emails that were sent, but I'm unsure on how to retrieve the list of ...
3
votes
2answers
8k views

How to attach PDF to email using PHP mail function

I am sending an email using PHP mail function, but I would like to add a specified PDF file as a file attachment to the email. How would I do that? Here is my current code: $to = "me@myemail.com"; ...
3
votes
1answer
423 views

An extra attachement is being sent in php

I use the following code to create and send the csv file to a specific mail box in php. I can successfully receive the csv file, however, I do not understand why one more txt file called ATT00001.txt ...
3
votes
1answer
907 views

Clear MAMP (postfix?) Mail Queue on Mac OS X 10.6 / PHP Mail() Loop Failure

I guess it serves me right, but I was testing a looping mail script that was designed to send an email to a friend every minute (for a set period of time) just to annoy them. (A reminder for a ...
3
votes
3answers
263 views

The code is sending 2 times without proper image

I tried this code from the post, but this code is sending two emails on a single run of file. Email file is sending email two times using php mail function Let me know what i am doing wrong - ...
3
votes
3answers
211 views

PHP mail script, email not being sent

I'm trying to send mail through a simple PHP mail script. I've check the code many times, the page is going to the "Thankyou_page" as if the mail should have been sent, yet I have not received an ...
3
votes
1answer
363 views

What are the differences between sending email in PHP with mail, sendmail, and smtp?

I have heard that all of these methods are valid ways to send email in PHP. What are their advantages and disadvantages?
3
votes
3answers
178 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
680 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 ...
3
votes
1answer
70 views

In “To” header same Address display two times in mail when using php mailer

When i send mail to ok@gmail.com using php mailer then In "To" header same Address display two times in mail Like This: To: ok@gmail.com; ok@gmail.com simple i used this: ...
3
votes
1answer
255 views

Email file is sending email two times using php mail function

My three concerns, tried different combos with no result, googled but little or no help -- I received two times the email,change myemail@emailserver.com to the email id to see the result. While ...
3
votes
2answers
2k views

Again: sending mail (through php) from an EC2 instance [closed]

I have seen lots of discussion on the problem of sending mail from an amazon EC2 instance using php's mail function. None of the suggestions have worked with me. Here is my setup: I have ubuntu ...
3
votes
2answers
216 views

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

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
2answers
4k 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 ...
3
votes
1answer
432 views

DKIM Signature not validating when sending mail with PHP

I was having a problem with gmail/hotmail filtering emails from my server as spam. The Spam Assassin score is quite low so I know that my IP isn't on any blacklists or such which means it is the ...
3
votes
1answer
501 views

Send url in php mail

I send a mp3 file download url which was taken from database and mailed to an user in php. When the links are triggerd to users, some links contain "!" marks and No hyperlink is generated. In ...
3
votes
0answers
2k views

What Content-Transfer-Encoding should I use when sending a PHP mail() containing a long http-link?

I've got a script that sends e-mails that looks kinda like this: $headers = "From: test@example.com\r\n"; $headers .= "Reply-To: test@example.com\r\n"; $headers .= "MIME-Version: 1.0\r\n"; $headers ...
2
votes
3answers
14k views

insert image in mail body

How to insert image in mail body when user click on send button. I am using php mail
2
votes
5answers
275 views

Send PHP Mail in intervals

I'm working on a simple text messaging service for my high school's student council and my hosting service only allows 19 PHP mail messages to be sent per minute, so is there a way I can set an ...
2
votes
4answers
7k 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 ...
2
votes
2answers
5k 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
776 views

Sending Bulk Email To Members of Application

I've been reading up on sending mass email to a user-base, and I'm not feeling comfortable using the PHP mail function. It tends to be too simple, spammy and unreliable. But that leads me to my ...
2
votes
3answers
3k views

Send attachments with PHP Mail()?

I need to send a pdf with mail, is it possible? This is my mail script: $to = "xxx"; $subject = "Olemme vastaanottaneet tilauksenne " . $ordernumber ; $message = ' <html> <head> ...
2
votes
2answers
387 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
4answers
3k views

Sending emails through PHP mail is slow

I have a large board with 1 million+ members and I'm experiencing great lag between the sending of emails to each member. At the current rate it would literally take me 3 months to send emails to all ...
2
votes
3answers
608 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??
2
votes
2answers
56 views

Send confirmation email to two users

I'm trying to send a confirmation email to two members but im confused as how to do so. Below is only the relevant code. Ive used PHP mail before in my website for a contact page, which is fine, but I ...
2
votes
1answer
352 views

Why is cron job failing to send email when php mail()'s fifth parameter is included?

I have a cron cron job setup to send emails. It is executed using the following command: /usr/bin/php -q /var/www/vhosts/domain.com/cron/job.php When I execute the php script from a browser, the ...
2
votes
1answer
262 views

PHP mail $email = $_POST['email'] in $recipients

I have the following php mail file : <?php $name = $_POST['name']; $email = $_POST['email']; $choice = $_POST['choice'];$num = $_POST['num']; $choice1 = $_POST['choice1'];$num1 = $_POST['num1']; ...
2
votes
1answer
65 views

PEAR installed but not working. Where is PEAR.php?

I've installed PEAR using pyrus.phar in C:\PEAR for PHP on IIS7. I've also downloaded the PEAR Mail package when I require_once the file Mail.php, I get HTTP Error 500.0 - Internal Server Error. Here ...
2
votes
2answers
1k views

PHP's mail() function causes a 500 Internal Server Error only after a certain point in the code

Several days ago, all mail() calls in my custom PHP application cause a 500 Internal Server Error and the only error logged is Premature end of script headers. Running the file via SSH sometimes ...
2
votes
2answers
3k views

Email Sending from Local Server in PHP

I have my file mail.php : <html> <body> <?php if (isset($_REQUEST['email'])) //if "email" is filled out, send email { //send email $email = $_REQUEST['email'] ; $subject = ...
2
votes
2answers
1k 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 ...
2
votes
2answers
273 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; ...
2
votes
1answer
76 views

Unable to send E-mails using Swift Mailer

$transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 465, "ssl") ->setUsername('username') ->setPassword('password'); $username = $_SESSION['username']; $from = $_POST['from']; ...
2
votes
2answers
565 views

PHP mail returns true but email is not delivered

I am trying to send an email in following way - from : xyz@domain1.com reply-to : xyz@domain1.com to : abc@domain2.com cc : abc@domain3.com My email is getting delivered to the address ...
2
votes
3answers
80 views

Emails sent using PHP have intermittent missing sections

I have a test program that logs the users answers and grade to a log file. I also have it email off this in a nicely formatted html email to the administrator of the tests. For the most part, this ...
2
votes
0answers
139 views

spamassasin HTML_IMAGE_ONLY

My mails get 1.6 points (out of max 2 to be classified by spam) from this rule: SpamAssassin Rule: HTML_IMAGE_ONLY_24 Standard description: HTML: images with 2000-2400 bytes of words Explanation ...

1 2 3 4 5 7