Tagged Questions

PHPMailer is a PHP email transport class featuring file attachments, SMTP servers, CCs, BCCs, HTML messages, word wrap, and more.

learn more… | top users | synonyms

10
votes
6answers
5k views

PhpMailer vs. Swiftmailer?

I'm building a fairly simple php script that will need to send some emails with attachments. I've found these 2 libraries to do this. Does either one have significant advantages over the other? Or ...
9
votes
4answers
545 views

Rupee symbol in mail

I am using PHP mailer to send mails to my clients. I need to insert the Rupee symbol in the body of the mails. How can I do this?
6
votes
1answer
1k views

phpmailer can't add a reply to address

I am trying to add a reply to address to my php mailer and it just puts from "me" and replies to my address. Any ideas what I am doing wrong? I have added the $mail->AddReplyTo. I want it to reply ...
6
votes
4answers
938 views

Account confirmation email sent as SPAM

I am using PHPMailer to send a confirmation email for newly registered users in my social network. But I found out most of them have ended up in user's spam list. (Hotmail and Yahoo). How to avoid ...
5
votes
2answers
5k views

“SMTP Error: Could not authenticate” in PHPMailer

I'm Using PHPMailer in a Simple Script For Send Email's Through Gmail, And I'm Getting an "Unknown Error" (At least For me!): SMTP Error: Could not authenticate. Error: SMTP Error: Could not ...
4
votes
5answers
156 views

Sending Mail To A Large Number of People

I have read lots of questions and answers about this issue on StackOverflow, but none of the ones I've read answered my question specifically. I do not want to have a mailing list. People tick a box ...
4
votes
3answers
1k views

Emails are put into spam - wrong headers problem

this is my first question on StackOverflow, but I think that we'll both come to the happy end. :) The problem is: I've got newsletter script written in PHP and when I send those emails to the various ...
3
votes
2answers
128 views

Using SSL/TLS when sending an email from PHP

I am very new to email servers and sending email with PHP... Is it possible to have email sent from a PHP script on my server encrypted using SSL or TLS before it is sent to the recipient's mail ...
3
votes
2answers
96 views

PHP mail() docs say that I should only use LF in the body, but RFC 5322 says otherwise. wtf?

PHP manual (http://php.net/manual/en/function.mail.php) says: Each line should be separated with a LF (\n). Lines should not be larger than 70 characters. But actual RFC 5322 gives totallty ...
3
votes
2answers
1k views

phpmailer, php, header, email goes to spam

I am running into a problem while sending out emails from the system and the problem is that the email gets delivered to the spam box in gmail/yahoo/hotmail. I am posting here, after doing my bit of ...
3
votes
5answers
2k views

Godaddy emailing - really slow

I have a domain through go daddy (and hosting) and I'm trying to email in php. Since Godaddy automatically authenticates, this is all my code is <?php include_once("../MailStuff/Mail.php"); $to = ...
3
votes
3answers
305 views

Prevent order confirmations sent via PHPMailer from ending up in spam

When I send order confirmations via PHPMailer, they usually end up in spam folders of Google, Yahoo and Hotmail and also take a long time to deliver. Is there a checklist or something of things I ...
3
votes
3answers
319 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 ...
3
votes
3answers
17k views

PHPMailer: SMTP Error: Could not connect to SMTP host

I've used PHPMailer on several projects but now I'm stuck. It gives me the error: SMTP Error: Could not connect to SMTP host. I've tried sending email from Thunderbird and it works ! But not through ...
3
votes
5answers
884 views

Where is the phpMailer php class equivalent for Python?

i'm new with python.. Actually, i'm trying to send featured email with python: html body, text alternative body, and attachment. So, i've found this tutorial and adapted it with the gmail ...
3
votes
2answers
2k views

PHP Send mail error

Please help me I am New in PHP and since last 5 Hours i am try to semd mail and now really tired. Thanks. Here is my code. I am using Gmail account. include("class.phpmailer.php"); ...
2
votes
3answers
88 views

Sent mails with phpmailer don't go to “Sent” IMAP folder

in my CRM online system I control ingoing mails with IMAP protocol. Now I'm making sending mails with phpmailer and SMTP protocol. Everything is ok but I have one wierd thing. How to make sent with ...
2
votes
1answer
132 views

PHPMailer 5.2.0 sends out 2 mails each time

First of all; sorry if this has been asnwered before, I have searched for the last couple of days with no luck. I am using PHPMailer 5.2.0 to send a mail from a form, which is called by an AJAX call ...
2
votes
1answer
80 views

Add a filetype validation to phpmailer?

I have a phpmailer that attaches files by looping through an array of files from an file input field. How can i make it so that onl PDF or DOC are allowed. And if something else is attempted, the ...
2
votes
1answer
211 views

Phpmailer sending attachments, but not the body

I have a form that im trying to get emailed on submit using PHPmailer. For some reason, phpmailer is sending the attachments of the email, but not the body/message. Heres my phpmailer file.. $name = ...
2
votes
2answers
177 views

phpMailer sending attachment name, not attachment

Hi I have a file upload field with name="file1" and code in a phpmailer script: if (isset($_FILES['file1'])) { $file1_path = $_FILES['file1']['tmp_name']; $file1_name = $_FILES['file1']['name']; ...
2
votes
2answers
172 views

Looking to add phpmailer library to Zend Framework setup

what is the best practice for adding and accessing libraries to ZF? I'm trying to add phpmailer, should I just add it to the library folder? How can I access this file now, as it does not use the ZF ...
2
votes
1answer
622 views

Where does PHPMailer Log?

I am trying to get the Spark_plug login working with my application. Most of it is done but I don't seem to be able to send any mails. I have tried a couple of things including ensuring that the SMTP ...
2
votes
3answers
260 views

Wordpress: Where to place my php script if I want to call it from a javascript file?

This is a file location not a script or functionality problem. I made a Wordpress theme and wanted to call a popup contact form via jQuery, if the form is validated, my js file will call a php file to ...
2
votes
4answers
1k views

Disable PHPMailer error messages

How do I disable the error messages from the PHPMailer class? I'm displaying my own error messages and I don't want users to see errors such as "SMTP Error: Could not connect to SMTP host." My code: ...
2
votes
2answers
945 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 ...
2
votes
3answers
302 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??
2
votes
1answer
419 views

PHPMailer question

I am getting the error Fatal error: Uncaught exception 'phpmailerException' with message 'Invalid address: ' etc. etc. etc. and it is a real eye sore on the page. So I want to capture the error or ...
2
votes
1answer
203 views

PHP mail not working in one script, but does in another

I have a small php mailer script within a php file that works fine and sends mail fine: $subject = "subject"; $mail_body = "mail body"; $name = "noreply"; $email = "noreply@domain.com"; $recipient = ...
2
votes
8answers
6k views

Could not instantiate mail function. Why this error occuring

When Im trying to send mail through PHPMailer, im getting this error message. My code is below. Help CODE : <? require("phpmailer/class.phpmailer.php"); // First we require the PHPMailer libary ...
2
votes
2answers
1k views

PHPMailer Content-Transfer-Encoding

If i send any mails with Content-Transfer-Encoding - 8bitm those mails will be send with Content-Transfer-Encoding: Quoted Printable! I can't find any solution for this, and it's getting frustating.
2
votes
4answers
21k views

Problem with SMTP authentication in PHP using PHPMailer, with Pear Mail works

I´m having trouble sending a e-mail with the PHPMailer class, but it works with PEAR Mail::factory. I guess the problem is with the SMTP authentication, but I couldn´t find the problem. The code ...
2
votes
1answer
2k views

GMail SMTP to send mail, receiving error (4.7.0), but mail is sent!

I am using GMail SMTP server to send mails. And PHPMailer as the mail sending script. I have received this error (I log all SMTP errors, that is whenever, PHPMailer::Send fails): - SMTP Error: Data ...
2
votes
4answers
5k views

Unable to send mail through Google SMTP with PHPMailer

I'm trying to send out mail using Google's SMTP in combination with PHPMailer, but I can't get it to work. This is my code: $mail->IsSMTP(); $mail->Host = "smtp.gmail.com"; $mail->SMTPAuth = ...
2
votes
9answers
4k views

How can I send HTML mails with included CSS with PHPMailer?

I have problem with sending HTML mails with PHPMailer. I make a Smarty template and I got all the HTML code from it, but when I send mail, I got the mail without included CSS (it's only ...
1
vote
1answer
29 views

Can I open socket in PHP from a specific IP (if the machine has two IPs)?

I'm using PHPMailer and it uses fsockopen to access the SMTP server. But the machine has two IPs with different reverse DNS records. So in email headers I got the following: Received: from ...
1
vote
2answers
85 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
1answer
91 views

Best PHP newsletter tool [closed]

In one of my web portal there are more than 1000 users . I need a news letter for every week for all these users ... My system ( web account ) crashed when I tried with a for loop . Can you please ...
1
vote
2answers
125 views

Track emails sent by SMTP with PHP

I'm developing a little email sender portal that allows registered users to send some amounts of emails. I use a secure connection with an SMTP server installed on localhost (I mean same server of ...
1
vote
1answer
58 views

PHP code in HTML mail

I am working on an application that is used for managing the groups of recipients and multiple contents to send I want to use different html design so i saved it in a table with some PHP code in it. ...
1
vote
1answer
96 views

emailing using phpmailer using post data for email address

im trying to email something to a user based on the email address that is entered on the html form. i am using post as the method and i cant figure out how to use that data for the email address using ...
1
vote
0answers
343 views

While using PHPMailer in Joomla to send email with CC is not working correctly

I am using PHPMailer to send emails in my Joomla project. When I send emails with to and cc both addresses, both the persons receive the email but in the email we can see only the person whose name ...
1
vote
1answer
92 views

Joomla: Sending mail takes ages

I have a Joomla website up and running and need to set up a simple contact form. The problem is, whenever Joomla tries to send an email, the page will hang for about a minute before I get a response. ...
1
vote
1answer
315 views

Sending an html email with phpmailer and codeigniter

I am sending emails with phpmailer package and using the package with codeigniter framework. I have made a helper function out of the phpmailer package which takes arguments as sender's address, ...
1
vote
3answers
375 views

PHPmailer sends to junk email

I've just updated a contact form to use PHPMailer to stop emails being marked as junk, with no luck. It's a fairly straight forward setup I'm using but its still going into peoples junk mail. Here ...
1
vote
0answers
152 views

PHPMailer :: Mail doesn't sent thru

[mail function] ; For Win32 only. ;SMTP = localhost; smtp_port = 25 ; For Win32 only. ;sendmail_from = me@localhost.com; ; For Unix only. You may supply arguments as well (default: "sendmail -t ...
1
vote
1answer
226 views

use of phpmailer class

i m using phpmailer class for sending emails. i m geeting error "Could not execute: /smtp" the following code the code is below. can someone suggest me what is the problem. require ...
1
vote
2answers
332 views

PHPMailer: Set mailed-by Message Header

After sending an e-mail using PHPMailer to my Gmail account, after clicking 'show details,' to the right of 'mailed-by,' it says 'yourhostingaccount.com.' Here is a picture: I've read you may ...
1
vote
1answer
346 views

Sending mail with PHPMailer through proxy?

I am trying to send an e-mail with PHPMailer through a SMTP proxy but am not able to find a field or function in PHPMailer to allow me to do this. Maybe you can help me out? If PHPMailer doesn't have ...
1
vote
1answer
74 views

phpmailer headers fake address prevention

I want to send some confirmation emails to the users of my site. Here is how I set up the headers. $headers = "From: ".EMAIL_FROM_NAME." <".EMAIL_FROM_ADDR.">"; $headers .= "MIME-Version: ...

1 2 3 4 5 6