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

learn more… | top users | synonyms

2
votes
3answers
2k 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
4k 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 ...
6
votes
4answers
1k 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(); ...
2
votes
3answers
13k views

insert image in mail body

How to insert image in mail body when user click on send button. I am using php mail
4
votes
5answers
473 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 ...
3
votes
2answers
7k 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"; ...
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
3answers
603 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
3answers
4k 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.
4
votes
5answers
649 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 ...
3
votes
1answer
222 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
3answers
3k 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
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
3answers
645 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
118 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
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 ...
1
vote
3answers
120 views

Send email from php at specified time

I'm trying to set up a "reminder" system in my phone through php. I have a form set up for me to input an email(which is actually my phone number address so it is sent as a SMS) and send a message to ...
1
vote
3answers
640 views

PHP Attach PDF mail function

I have been trying to get php to send a email with a attached PDF, I have been looking everywhere and came across this post Email PDF Attachment with PHP Using FPDF. I tried the solution but still ...
0
votes
5answers
88 views

PHP: $_POST fields empty [closed]

I'm trying to submit a simple form via e-mail, but when I get the e-mail though, the $_POST fields are not populated and the message body comes out as: "Name: Email: Organization: Role:" with no data. ...
0
votes
0answers
87 views

setFrom() of JAVA MAIL API is not working properly

I have set the from address using setFrom(<from mail>, <from name>), But when i receive the mail, It shows the <from name> and the <smtp auth mail>. even though i set the from ...
0
votes
1answer
168 views

php: Textarea HTML value to show in Html Email?

I'm using PHPmailer and everything is perfect except the Texts inside <textarea> are showing as ONE SINGLE LINE. Meaning, no html value (for only TEXTAREA) at all. Actually the mail itself is ...
0
votes
0answers
2k views

Error in using mail() function of PHP

I would like to develope a simple email function in my PHP file, therefore I make use of the mail() function. When I try to send an email to myself, it does not work. As you can see, here are my ...
0
votes
2answers
1k views

PHP Sending Emails with File Attachments - Email Not Sending At All

After trying to read various articles on sending emails with attachments in PHP (I am use to ASP with VBScript), I wrote the code below. Unfortunately, it does not work at all. Not only does it not ...
0
votes
1answer
332 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
1k 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
2answers
353 views

why is php mail script not sending mail

<?php $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; mail("example@gmail.com", "hello", "nothing",$headers); echo "mail sent"; ?> ...
-2
votes
2answers
50 views

PHP email form not sending information

I've inherited an email form from a former vendor and after we've moved it to it's new server it started to malfunction. What it's supposed to do is send a verification email to the user who filled ...