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

learn more… | top users | synonyms

1
vote
1answer
12 views

Subject in PHPmail $head gets doubled and in wrong encoding

Im using IPN to send mail to customers after a purchase. Everythings going well except one small annoying thing. When I test to buy a product with my mail as buyer the mail in my mail inbox looks like ...
-1
votes
2answers
34 views

Send Sign Up Form Results to Email Address Via PHP [closed]

I have a question about PHP email function, I hope you can help me with this. I have little to no experience in PHP. Ive set up a web page, where users can submit following info via the HTML form: ...
0
votes
0answers
9 views

PHP E-mail forward

I am trying to write a php e-mail forwarding script. I wrote a simple code doing this, reading e-mails from imap and sends them to a specific e-mail address. But the problem is it is not working :) ...
2
votes
1answer
42 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']; ...
0
votes
1answer
39 views

php mail adds random spaces and floating elements

I have some strange thing with php mail() function. When I send a mail with php it randomly adds spaces and some of the float elements are not working. These are my headers: $headers = 'From: ' ...
-1
votes
2answers
36 views

How to send a constant value in table field to php email?

<?php $product = $_POST['product']; $price = $_POST['price']; $email = $_POST['email']; mail( "email@domain.com", "New Purchase", "Product: $product\n Price: ...
1
vote
3answers
41 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"; ...
-3
votes
1answer
32 views

Unable to send HTML mail through mail()

The mail sent by the below code includes all the HTML tags. How can I get rid of that tried a few ways but still mail output is scrambled with html tags. And also need help on if any better way of ...
0
votes
2answers
54 views

Wierd characters at the end of any email: PHP MAIL

Well I am using the PHP MAIL funtion and for some reason every email it sends has a weird; ...
0
votes
0answers
14 views

Emailing php output

I have built a jquery mobile form that submits to a php file. I want the following php output to also have the option of emailing it to the user. <?php $DCity=$_GET["DCity"]; ...
-1
votes
1answer
41 views

php mail function within function - how secure is this? [closed]

I've been reading into php mail injection and possible security risks. I've decided to control most of this via a function and simply pass in the from email and contact message. just wondered how ...
0
votes
0answers
28 views

e-mail address not shown in proper format like myname@mycompany.com — PHP

I am trying to code a PHP script, wherin I am trying to send a mail to a specified email address which I collect from POST variables from Java. However I at first was able to send the mails but on the ...
-2
votes
0answers
23 views

PHP mail(); not working, How to install mail server [closed]

I was unable to send an email using PHP mail sending function. I just came to know there is no mailserver running in my Linux server and I tried to install one using "yum install sendmail" in ssh. But ...
0
votes
1answer
47 views

PHP/ MySQL Database Backup Script Not Working Correctly

This is my script: <?php ini_set('display_errors',1); ini_set('display_startup_errors',1); error_reporting(-1); backup_tables('localhost','xxxxx','xxxxx','xxxxx'); /* backup the db OR just a ...
0
votes
1answer
21 views

A php mail function regarding the additional parameters for headers

I'm using dreamhost for my mailing. I'm having an issue with php mail function additional headers parameters. This code works, and the email is sent: $to = 'myemail@gmail.com'; $name = ...
0
votes
1answer
61 views

Php email - inline image and 2 attachments

I've been struggling with this script for 5 days now and I just can't get it to work. I want to send a mail using php mail function. It needs to have an inline image, and 2 attachments. What I've got ...
5
votes
3answers
67 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(), ...
0
votes
0answers
29 views

Joomla Form Post

New to Joomla I am trying to figure out why my mail is not being sent when a user sends a report. From what I am seeing the form which is part of one of the main components action is ...
-1
votes
1answer
40 views

not sending email in php with header from email id

I am using the following code along with HTML for header . $email="example@example.com"; in the example and I want to implement variable in its place. Code as posted below but its not showing error ...
0
votes
4answers
553 views

PHP Mail function, BCC not working

I am trying to figure out why the bcc part of this PHP mail function is not working in the code below: function _send_user_email($to, $subject, $message) { $headers = array(); $headers[] = ...
0
votes
2answers
36 views

Getting 500 Error when loading “send email” page

Sp I am trying to send out an email, the code worked fine until I switched over to html email from a standard email. It is live here: http://kenthomes.net/Amelia-Cove Click "Share this plan". My ...
2
votes
2answers
45 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 ...
0
votes
1answer
587 views

PhpMailer able to send mail from Windows but not CentOS

I have Apache w/ php on my windows for testing purpose. I also have Apache w/ php on my production CentOS 6.4 server. I am able to perfectly send an email on my windows server using PHPMailer. ...
0
votes
1answer
54 views

phpmailer code not working when within function

I have the code below in a function.. however it never adds the attachment to the email. The email comes through fine but with no attachment. However, if i remove the code from the function and add ...
1
vote
3answers
118 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
votes
1answer
40 views

Php attach mail is not working

this is the function.. file is present in the directory and it is showing that it have mailed.. but it havent.. here is the code . function mail_attachment($filename, $path, $mailto, $from_mail, ...
1
vote
1answer
31 views

php mail attachment fails in wordpress

I'm using wordpress to create my site. Can someone help me figure out why php mail attachment fails to attach files from other locations other than my wordpress folder??? Here is my code : ...
0
votes
1answer
41 views

PHP mail() troubles Mac

I am trying to send an email from my mac using the php mail() function, but I cannot seem to get it to work. I can start sendmail from the terminal with no errors, and have edited my system's php.ini ...
0
votes
2answers
151 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
19 views

Wordpress - Function parameters not passing in

I am trying to write a function that emails my users after I publish a new post. Here is what I have so far: require_once('db.php'); $sql="SELECT email FROM table"; $result = ...
0
votes
3answers
161 views

No line break from textarea in php mail [duplicate]

As you can see from the code, the user first enter name and message and click send. The problem is the text area. When i make line breaks, there still isn't any line breaks in the e-mail i get. ...
-4
votes
3answers
74 views

'Simple' PHP script shows error in line 10, what have I done wrong? [closed]

My freshly updated website has a contact form with php mail script which I based on the form script here. The script is saved on my webserver, but when data is submitted, no mails are sent as there ...
0
votes
2answers
61 views

php mail / submit a variable span

I am trying to submit a <span> value to be mailed through php. I want to submit the variable span res1: <form method="POST" name="results" action="message.php"> <span ...
4
votes
3answers
108 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 ...
0
votes
2answers
40 views

PHP Mail Sending Issue

I'm having a hard time getting the following code to run: $name = 'Kevin'; $company = 'nonw'; $website = 'none'; $email = 'my@email.com'; $phone = 'none'; $message = 'Just a test message.'; $message ...
0
votes
1answer
50 views

How can I add smtp support?

First of all, I'm new here and PHP :). My question is about Smtp support. My code is doing send recover password. But my hosting need smtp support. I didn't add it. I read a lot post but my knowledge ...
1
vote
1answer
280 views

Joomla PHP Mail vs. SMTP

I've been asked to change all of our current Joomla sites from using PHP Mail to SMTP. The background: we were recently compromised through a vulnerable component on one of our sites. We have a ...
0
votes
2answers
128 views

PHP Registration Form and Database Error

I've asked a few questions on here and got lots of help, so I will thank in advance for my next question. I've been trying to create Registration System for my Scout Group (Registering for Camps) and ...
0
votes
1answer
40 views

php mail form error

I am trying to send an email through php using this: <?php mail("my_email", "Test Message", "welcome to the test message") or die("Error!"); ?> But when i run this in php the email doesnt ...
1
vote
0answers
65 views

Optimise mail sending process of phpmailer

I am trying to send mails using phpmailer and code is working fine. However when I see the CPU usage history in task manager I could see it is fluctuating rapidly between 0% to 100%. And RAM usage is ...
-3
votes
1answer
65 views

PHP Mailer Form - Marked as Spam

I've built a mailer form in php that allows me to just type in an email address and it fires an email directly to the address entered, this is to save a stupid amount of time due to the fact that i've ...
0
votes
2answers
46 views

PHP Multi-Part Text/HTML showing blank

hoping I can get some help because this is driving me nuts. I have tried various scripts to do this but the one I landed on was this. What is wrong with this picture? I get an email but its ...
0
votes
2answers
172 views

PHP mail opens in Gmail but not in Outlook

When I send a mail with PHP it displays correct in Gmail but not in Outlook. It's a mail with a PDF attachment and some text. The PDF is created with fpdf and sent as an attachment, this works fine in ...
3
votes
1answer
55 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: ...
1
vote
2answers
233 views

send mail with doc file attachment

i am sending an e-mail with a doc file attachment. I am receiving the mail but with no any attachment. PHP $file_resume = ''; if (!empty($_FILES['attachment_file_name']['tmp_name'])) { $file = ...
0
votes
2answers
100 views

why php mailer not send attachement?

I m using php mailer to send mail with attachment but i don't know why attachment not send else msg in body send properly and no error show plz give best solution for this $to = 'ok123@gmail.com'; ...
0
votes
4answers
1k views

PHPMailer SMTP configuration

For the past 2 hours I've been looking online to see if any other people encountered this problem, and it seems a lot has, bot none of the answers are working for me. SMTP -> FROM SERVER:220 ...
0
votes
0answers
114 views

Why PHP's mail function is not working for a specific email with google mail service with domain

I have a mail function. From where I need to send an to the admin of the site after an successful user signup with some detail of the user. I tried with different email addresses and it works fine. ...
0
votes
4answers
107 views

PHP Form fields will not send to email

I have created a send to email PHP script. The form seems to work correctly when sending only one field (the message field) but as soon as other fields are added, the form ceases to be emailed on to ...
2
votes
2answers
473 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 ...

1 2 3 4 5 7