phpmailer

phpmailer html email problem

hi i tried to send html email but i guess i am doing sth wrong here is my code for body part $body .= "<table style=width: 800px; height: 600px;background-image: url('http://www.myserver.net/image/temp1.jpg');background-repeat:no-repeat&gt;&lt;tr&gt;&lt;td&gt;&lt;table style=width: 100%>"; $body .= "<tr><td align=center style=wid...

Php Mail Function

I am using php sendmail() function in my projects. When I sent above 3 or more mails processing gets too slow. What is the problem? If I use PHPMailer, will this problem solve? ...

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. ...

PHPMailer AddAddress()

ok, i don't know how the data should be formatted for AddAddress PHPMailer function; i need the email to be sent to multiple recipients so i tried $to = "[email protected],[email protected],[email protected]"; $obj->AddAddress($to); but with no success. any help will be appreciated. thanks ...

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 in our script $mail = new PHPMailer(); // Next we create a new object of the PHPMailer called $mail $mail->From = "[email protected]"; $...

Remove header Content-transfer-encoding: 8bit using PHPMailer

Is it possible to remove Content-transfer-encoding: 8bit from the email headers using PHPMailer? ...

Unable to send email through gmail using PHPMailer_v5.1

I am trying to send email through gmail using PHPMailer_V5.1. Getting the following error, SMTP -> ERROR: Failed to connect to server: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? (41961176) SMTP Error: Could not connect to SMTP host. The following is the code which came with the PHP...

problem with phpmailer

I'm sending email with phpmailer, everything is fine but when I recieve the email in the part that has email from, I get Webmaster as I set it and in brackets I get the full googlemail email address. (i'm using google mail smtp) to send mail, I was just wondering if I can hide the googlemail email address somehow. I'd like the cs@beaut...

phpmailer with hotmail?

I'm trying to send emails from my server by a PHP script. I used to send it by a native php function mail and everything worked OK. Here's the code I used: $to = $sMail;<br> $subject = $sSubject;<br> $message = $sMessage; $headers = 'From: [email protected]' . "\r\n";<br> $headers .= 'Reply-To: [email protected]' . "\r\n";<br> $headers ....

PHP Mailer - Attachments not sending properly.

When I send a message with a string attachment, the string attachment when opened only gives a 1 and in the email sorce it says --b1_5a1a74831dfa0ce86353d222b95078c6 Content-Type: text/html; name="apperley-invoice-20017.html" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="apperley-invoice-20017.html" MQ==...

PHP Command-line script exits on false

I am running a loop script in PHP command line, which send out emails to customers using PHPMailer. The problem I am receiving is that the command line script exits when the PHPMailer returns a false. Here is the script pseudocode: while(the loop is valid){ if(mail ID exists){ set_time_limit(30); ..compose mail.. ...

PHP mailer error

I tried to use php mailer but errors as follows. SMTP -> FROM SERVER: SMTP -> FROM SERVER: SMTP -> ERROR: EHLO not accepted from server: SMTP -> FROM SERVER: SMTP -> ERROR: HELO not accepted from server: SMTP -> ERROR: AUTH not accepted from server: SMTP -> NOTICE: EOF caught while checking if connectedSMTP Error: Could not authenticate...

PHPmailer multiple recipients error

Hi there, I have the following code with PHPmailer: $tomailn[0] = '[email protected]'; $tomailn[1] = '[email protected]'; foreach($tomailn as $value) { $mail->AddAddress($value, ''); } But I am getting the error 'Could not instantiate mail function'. If I remove an item from the array it works fine, but gives an error on when trying to...

Sending emails with PHPMailer()

I have created a newsletter system and my question is: How should i write my code considering that i have to send that mail to hundreds of email addresses? I've discussed with my host administrator and he told me that i should send my emails one by one but not more than 6 per minute. Can i use the $Timeout property? If so, how? Tha...

Do multiple BCC's count towards SMTP hourly email limits?

Hi, I'm using the PHPMailer class for sending email updates to opt-in subscribers, and am occasionally hitting our host's hourly email limit. Would grouping identical messages together and adding receiptiants as BCCs address this problem? Obviously this would only be a short term solution until the list grows, but something is better...

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 = "[email protected]"; $recipient = "[email protected]"; $header = "From: ". $name . " <" . $email . ">\r\n"; mail($recipient, $subject, $mail_body, $header); However, if...

Persistent SMTP connection in PHPMailer

How to enable persistent SMTP connections in PHPMailer? I will send many emails, so with persistent connections probably I will get performance gain. ...

how to send mails using phpmailer through yahoo SMTP?

Hi, i am using phpmailer to send mails it is working with gmail but when it comes to yahoo giving the following errors SMTP -> Error : Password not accepted from server : 530 access denied SMTP -> Error : RSET failed SMTP -> Error : Could not authenticate i am using the working yahoo account. Please give me a solution. Thanks in adva...

Error handling with PHPMailer

I'm trying to use PHPMailer for a small project, but I'm a bit confused about error handling with this software. Hoping someone has experience with it. When I've set up an email and I use: $result = $mail->Send(); if(!$result) { // There was an error // Do some error handling things here } else { echo "Email successful"; } ...

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 this? This is my script $mail=new PHPMailer(); $mail->IsSMTP(); $mail->SMTPAuth = mSMTPAuth(); $mail->SMTPSecure = mSMTPSecure(); $mail->...