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

learn more… | top users | synonyms

-1
votes
1answer
535 views

Sending HTML Email using CKEditor and PHPMailer

I need to send e-mail created with CKEditor and sending it using phpmailer. I use the following code: $to =$_POST["toEmail"]; $subject=$_POST["emailSubj"]; ...
-1
votes
1answer
549 views

How to send an email with content from a View in codeigniter

I want to send an email to user from my application with the content of the email loaded from a view . This is the code i've tried out till now: $toemail = "user@email.id"; $subject = "Mail ...
3
votes
1answer
467 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
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"; ...
0
votes
1answer
52 views

No such file or directory. Sending Attachments

I have built a php mail system. now I want to also send attachments whit the email's. I have the files for the attachments uploaded to my server and want it with the following piece of code sent with ...
0
votes
2answers
273 views

PHP mail form failed to send

I am new in PHP programming. I tried to make a form that includes file attachment. As I tested it, it failed to send the form to my email. Please help me look at my PHP codes, if I have missed ...
2
votes
1answer
833 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 ...
0
votes
1answer
509 views

PHP to send smtp emails with pear mail module

Initially i was sending emails through mail() function, but they always get caught in the spam folder, so now i want to send them using SMTP using PHP PEAR, but i am getting some errors. in the ...
0
votes
3answers
204 views

php code is showing instead of running

i am using php 5.2.4 with wampserver. everything is going fine. i have done several works in a few days. there were no problem. But i am facing a peculiar problem. the script i wrote for the page is ...
-4
votes
1answer
108 views

PHP Mail shows SMTP Error

I have tried many mailing scripts in php,But my server always shows SMTP error.I am using PHP5.Any please help..
0
votes
1answer
160 views

Mails from sendmail marked as SPAM

I am using the default set up of send mail in a CentOS box and I have an php application that uses the PHP mail function. For past few days while testing, I see that the mails from this application ...
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 ...
0
votes
3answers
417 views

Sending Email to my gmail account

I am able to send emails from my Mercury mail server to my Gmail account, but when I try to it using the mail() function in PHP, it doesn't work! Why? <?php if(mail('XYZ@gmail.com','NICE','OK')) { ...
0
votes
2answers
164 views

PHP mail function issue with hotmail?

I have created a script on mac OS X and it successfully sent an email to my gmail account but when i tried to use it to my hotmail account it didn't work is it because hotmail uses a spam filter or ...
-1
votes
2answers
674 views

Send mail using php from windows but not using any library

I want to send mail using standard php mail function but not using any library.
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 ...
0
votes
1answer
563 views

php mail not working on rackspace cloud

i have this rackspace server, and i installed sendmail there. the sendmail is configured to send emails using sendgrid. so the sendmail works via the terminal, but the php mail function returns ...
1
vote
2answers
2k 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 = ...
0
votes
2answers
670 views

Setting up PHP mail in Debian Lenny

So I am trying to setup PHP Mail in Debian Lenny. I followed this tutorial: http://www.thewireframecommunity.com/node/39 and I've installed ssmtp with aptitude install ssmtp. My email provider is ...
0
votes
2answers
153 views

cron job in php

I wrote cron job as below: #11 01 * * * /var/www/mail.php php code <?php #!/usr/bin/php $to = "test@test.com"; $subject = "php mail"; $message = "Hi this is simple message."; $from = ...
0
votes
1answer
368 views

Why would Wordpress throw a 404 error on a POST form submit in one template, but not in another?

I've developed a php mail() function for custom forms in a Wordpress theme. It's just a normal form that gets submitted to itself (with an empty action attribute). In functions.php, I'm including ...
0
votes
1answer
152 views

PHP mail function interrupting jquery .post return data

I don't really understand what's going on here. I have a jquery script that sends form post data to a signup script, where upon an email is sent to the user signing up and the users Id is returned ...
1
vote
3answers
271 views

Dump SQL as plain text using PHP

Basically what I need to do is dump a SQL database in plain text using PHP. Just like phpMyAdmin does when you choose not to get a file while exporting. This way I can send it via mail and reinsert ...
3
votes
1answer
322 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?
1
vote
3answers
327 views

How do I set the name of an email sender via PHP

So I want the from field when an email is opened to be something like "Jack Sparrow Via somesite" as opposed to an explicit email address. I wondering how to set this in PHP's mail() function?
0
votes
4answers
3k 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
64 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; ...
-2
votes
1answer
330 views

can not send email to own domain, but can for other domain like as gmail

I want to send a new password by email when a user forgets their password to login to my site. The email fails to send unless it's a Gmail address. Can anyone explain what the problem is? <?php ...
0
votes
1answer
151 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 ...
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 ...
0
votes
0answers
139 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
2answers
623 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
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
62 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
226 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
3answers
186 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
159 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
203 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
5answers
4k views

PHP mail not working for some reason

I am new to php and i am using mail function to send email which is not working i get a success message still it does not work same code <?php $email_to = "abc@abc.com"; $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 ...
0
votes
3answers
777 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; ...
1
vote
4answers
985 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
609 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. ...
1
vote
0answers
119 views

php mail function with gmail [duplicate]

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
votes
2answers
137 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
220 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 ...
1
vote
0answers
84 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 ...
0
votes
2answers
263 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
399 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
94 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 ...

1 3 4 5 6 7