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

learn more… | top users | synonyms

-2
votes
3answers
44 views

PHP Contact Form: Undefiined index $_GET[index] [closed]

Here is my php contact form. I can't figure out where do mistakes come from...Hope you will help, thanks in advance <?php if (empty($_GET)===false){ $errors=array(); ...
0
votes
1answer
14 views

Registration email sent are classified as spam

registration email sent from a new website I am building end up in the receivers' spam folders, they are classified as spam. So far I have no idea why this happens. Therefore I am posting the email ...
1
vote
1answer
14 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
40 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
1answer
17 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
52 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
42 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
47 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
40 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
42 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
32 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
24 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
59 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
0answers
30 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 ...
0
votes
1answer
42 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
2answers
39 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
48 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 ...
5
votes
3answers
69 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
1answer
55 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
121 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 ...
0
votes
1answer
70 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 ...
0
votes
1answer
26 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 = ...
-1
votes
1answer
41 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
33 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
42 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
3answers
186 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
63 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
113 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
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
2answers
41 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 ...
0
votes
2answers
142 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
601 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
41 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
66 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
71 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
49 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 ...
3
votes
1answer
62 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
259 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
187 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 ...
0
votes
2answers
108 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
0answers
124 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
3answers
209 views

PHP Mail() Function Issue - Message field not getting sent (WordPress)

I know there are thousands and thousands of ways to utilize the PHP mail() function, but I am fairly new to PHP and could use some pointers to get me set in the right direction. I have a PHP mail ...
0
votes
0answers
99 views

apache, mercury32, php mail. Can't get it to work

I can not get PHP mail to send email... All this is just to test my php mail function in my localhost setup. XAMPP-apache,mercury,mysql,windowXP I am pretty sure I installed mercury 32 correct, If i ...
0
votes
1answer
183 views

Dynamic files for phpmailer using dompdf

I am generating pdf file using dompdf whose filename keeps changing as I have assigned a variable in dompdf stream output and this filename always remains as unique filename. I want to attach a file ...
0
votes
4answers
65 views

Sending mail failed in php

I am trying to send email using mail function in php: $subject = 'testing'; $email = 'test@gmail.com'; $message = 'test message'; $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= ...

1 2 3 4 5 7