The `mail()` function allows you to send mail in PHP.
3
votes
1answer
390 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 ...
1
vote
1answer
112 views
issue with php xmailer? I don't think it's syntax
code:
<?php
session_start();
$name = htmlspecialchars($_POST['name']);
$phone = htmlspecialchars($_POST['phone']);
$email = htmlspecialchars($_POST['email']);
$staddress = ...
1
vote
1answer
244 views
php mail with PDF attachment header causes to go into just mail
I have a webform that generates a PDF which is emailed to me upon submission but the email keeps getting filtered to the spam for folder. I suspect that the something is wrong in the email header but ...
1
vote
1answer
70 views
PhP mail program changes my Apostrophe(') turns into ’
When I send email through PHP mail program my apostrophe beocomes ’.
Why is this happening ?
How can It be corrected ?
Should read (Tutor's) , but instead it reads (Tutor’s)
1
vote
1answer
349 views
Warning: mail() [function.mail]: SMTP server response: 552 5.7.0 DATA header size exceeds maximum permitted
I'm Beau from Fijura Web Design in Perth, Western Australia.
Having an issue on my server. I am trying to create a script that will send an email with an attachment and whenever I try to run the ...
1
vote
1answer
128 views
php mail function having issues with multiple recipients?
PHP mail function works fine if all the addresses are valid and sends mail to each one of them but in case any of the email id is not valid (i mean does not exist) The mail function does not works. ...
1
vote
1answer
1k views
PHP Mail Postfix
I have a PHP program using the mail() function. I have this running on a Linux server. Normally it is setup to run over the Linux sendmail function but my machine is setup to use Postfix.
Can I use ...
1
vote
1answer
1k views
PHP: mail() attaching base64 image comes out as text
I have been trying to encode an image as base64 then sent it as an email attachment using php mail(), but all I am getting is the base64 text in my email. Here is what I am using:
$boundary1 = ...
0
votes
1answer
13 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 :) ...
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 ...
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 ...
1
vote
0answers
733 views
php @mail is not sending mail
my php mail function was working fine and sending mail just fine but since past few days it is not sending any emails. i have tested following from whm,php form, cpanel webmail and these are my ...
1
vote
0answers
42 views
Magento Skipping Some Emails
I am having an issue with Magento skipping some - nominal automated emails to both the customer (for order confirmations) and admin (using the New Order Admin extension). I would say a majority of the ...
1
vote
0answers
69 views
Cant send e-mail by php mail on first attempt
I'm trying to send an email via SMTP using PHPMailer on my site, it works the second time I try (use submit), but the first time it says it cannot authenticate, login or password is invalid. I have ...
1
vote
0answers
128 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
vote
0answers
31 views
PHP Mail in Local Host Folder
I Want the PHP Mail saved as a HTML Document in one of the Folder in My PC when ever I use sendmail functionality.
How can i do this
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 ...
1
vote
0answers
297 views
Unable to receive sendmail bounce mails using php mail()
I'm using the php mail() function to send mails to recipients
$to = "recipient@example.com";
$subject = "Subject";
$message = "This is a message from our website to say thank you";
$headers = "From: ...
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"];
...
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 ...
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 ...
0
votes
0answers
116 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
0answers
96 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
0answers
72 views
CKeditor : Styling not going with php email
I am using CKeditor to style emails to send through mail(). It is sending emails but styling text and embedding images link is not going with email.
Only bold/italic is working. Here are headers I am ...
0
votes
0answers
75 views
PHP attachment in email from Form not working
I know this has been covered 100 times but I still can't seem to find the right way to get this to work. Sometimes this code will work and send an email with attachment, sometimes the attachment will ...
0
votes
0answers
37 views
ACYMailing painfully slow after changing PHP handler
I'm running a Joomla site and using ACYMailing to send daily blasts to a list of about 60,000 subscribers.
I always keep myself at the very end of the list so I can see how long the whole list is ...
0
votes
0answers
70 views
What header do I need to send CSV file via mail()?
Can someone provide a list of headers or an example on how to send a mail with attached csv file?
I have trouble because in each example which I found are different headers.
UPDATE:
private ...
0
votes
0answers
85 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
0answers
88 views
Sending email via PHP, Outlook adding extra line breaks
I'm sending email using the php mail() function. I'm explicitly defining it as plain text using the following at the beginning of my headers:
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= ...
0
votes
0answers
31 views
PHP sending mail from local with different sender set
I am currently sending emails from one of my php app for different types of requests to user's friends.
Whenever a Request email is sent to a user, it's sent from User <"noreplay@mydomain.com">, ...
0
votes
0answers
97 views
Unexpected http status error in Amazon SES API
I am trying to use Amazon SES API to send mail using PHP. I am following this github example.
My php code is like following:
<?php
if (!class_exists('SES')) require_once 'SES.php';
// ...
0
votes
0answers
71 views
Turkish font not supported in $subject variable in php mail function
Email is not send by php mail function when i used turkish font in $subject Variable.
I used that template for sending email.
$subject='HediyeKartlar.com Şifreniz';
...
0
votes
0answers
95 views
wp_mail issue - will only send to a single domain, php mail function also will not work on this site
I'm finishing off a WordPress site which was built way back when, the site needs to send out a notification email when a new users signs up.
All very straight forward functionality except wp_mail is ...
0
votes
0answers
70 views
sending attachement without extension in mail
I have been trying to send mail with attachment for last three days. but cant success.
Actually the problem with attachment is that my attachment having no extension.
It's the piece of a large file ...
0
votes
0answers
320 views
send image attached with php mail using file_get_contents($path_of_image)
I have searched this everywhere even tried other options like Swift mail but i m using godaddy and nothing works.Please help me out.
I am using the script given below to send an email with an image ...
0
votes
0answers
76 views
Store and Concatenate Results from foreach loop to email contents
I have been searching for a solution and still can't find it. Currently I am getting the results from a form with multiple inputs. I am using foreach loop to display the data in a table. Below is my ...
0
votes
0answers
153 views
Table rows not appearing properly in php mail (), appears in browser though
I have a code to send a reminder before expiry of warranty. Currently I am testing using localhost (XAMPP, sendmail with Gmail SMTP server)
The code is as below.
The table gets displayed well in ...
0
votes
0answers
34 views
Stopped sending receiving emails from own server
I have website having registration system, when user registers he gets email confirmation and i also get one email "new user registered". Few weeks back i created enewsletter subscription system. ...
0
votes
0answers
57 views
image with encoded source not displaying in gmail
I am using PHPMailer to send emails which contain images with source as base64encoded. Its works fine in Outlook and Thunderbird. But the image is not displaying in Gmail. It appears as with no src ...
0
votes
0answers
87 views
Gmail moves my server mails to spam folders
I have sending mails from my server. But it always moves to Gmail spam folder. Please suggest the same.
Delivered-To: mmraja63@gmail.com
Received: by 10.216.89.4 with SMTP id ...
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
0answers
144 views
Protecting PHP Mail / Contact Form
Ah the joys, 9 million pieces of advice, guidance and code and not one agrees with another. So I'm trying to get to the point at which I can be confident that the way I've chosen to protect my contact ...
0
votes
0answers
102 views
PHP mail function not working based on sender's address
I am trying to send an email on a form submit. Problem is, when I use my email, there are no problems and my the mail gets delivered to my mailbox.
However, when I change the recipient email to that ...
0
votes
0answers
188 views
function not working after saving pdf from TCPDF
I am trying to save a e-ticket pdf with TCPDF . After successfully saving the pdf file to my tickets directory,I need to mail the customer about the journey details . But this function is not ...
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
0answers
124 views
Email forwarding via PHP
I am creating a free forwarding email address system and asked a little while ago about this. What I would like to do is forward an email to the persons real email address while keeping the headers ...
0
votes
0answers
104 views
What will happen if I would send an email to 1000+ recipients through PHP?
I have a large database of email addresses (1000+). I would like to send all of those email accounts a message.
I use would like to use PHP mail() for this job. Is this possible? Will this work? ...
0
votes
0answers
114 views
In PHP, how do I send an email with multiple from addresses and embedded images?
I'm sending a multi-part email in PHP.
If I have 2 email addresses separated by a comma in my from field, the sent email does get sent, but is messed up as the embedded images will not show, so you ...
0
votes
0answers
582 views
PHP mail function not working on new Exchange 2010 Server
When trying to send mail (to email addresses within the domain) using PHP's mail() function on my new Exchange 2010 server I get the error:
mail(): SMTP server response: 501 5.1.3 Invalid address
...
0
votes
0answers
712 views
Ajax Jquery in PHPMailer SMTP
I have a problem in using phpmailer using ajax jquery. It will not send email to my recipient please help me here are the codes:
For my popupjob.php where it will process my ajax:
...

