Tagged Questions
0
votes
0answers
25 views
Missing attachement in mail sent through Mime / SMTP Gmail Server (PHP, PEAR)
I am sending an Email from my server through SMTP Gmail using Pear's Mail Mime. However when I add an attachement it simply does not show up.
$smtpinfo["host"] = "ssl://smtp.gmail.com";
...
0
votes
1answer
137 views
Pear Mail (Gmail SMTP) - Failed to connect socket
I'm trying to send an email to gmail using Pear Mail but I'm having error:
Failed to connect to ssl://smtp.gmail.com:465 [SMTP: Failed to connect socket:
Unable to find the socket transport "ssl" - ...
0
votes
0answers
89 views
Pear Mail, unable to set sender to error
I installed Pear Mail, and get the following error, when trying to send mail.
searched the web, without any answer, any clue of what's happening?
Hi, I installed Pear Mail, and get the following ...
0
votes
1answer
134 views
PEAR Mail won't connect to gmail, throws error
Solved. Bluehost is blocking the port and they won't unblock. Hope this helps someone else.
I am using the PEAR mail script given in this code example:
Send email using GMail SMTP server from PHP ...
1
vote
1answer
131 views
PHP include path problems when using PEAR Mail on Bluehost
I am trying to modify a TemplateMonster template that uses PHP to email data from a form. It uses localhost as the email server by default, but my client already uses gmail's mail exchange servers ...
1
vote
2answers
76 views
Is sending from gmail via pear secure?
I'm using a form on my website to send an email using the PEAR mail function. The email will send via gmail as described here - http://www.phpmaniac.net/wiki/index.php/Pear_Mail
I will therefore need ...
0
votes
1answer
824 views
PHP PEAR mail fails using Google Apps mail account - error 535 authentication failed
I have a PHP page that uses PEAR Mail to send a message through a Google Apps mail account. The page is only active in the fall and winter, and it was working great when it was last used in January.
...
0
votes
2answers
209 views
Pear Mail Package - Embed An URL Inside E-Mail Body Text
I'm using the Pear Mail Package to send an e-mail via G-Mail (using SMTP) for a website I'm developing. When someone registers with the website, the user must first click a link in the confirmation ...
2
votes
3answers
991 views
Sending HTML message through PEAR while using SMTP authentication returns an error
I'm trying to send an HTML message while using SMTP authentication to Gmail in PHP. Here is the script that I am using:
require_once "Mail.php";
require_once 'Mail/mime.php';
$from = "Some Name ...
0
votes
1answer
167 views
Issue Sending Mail through GMail SMTP Using PEAR
For the past day or two, I have been receiving this error:
Failed to connect to ssl://smtp.gmail.com:465 [SMTP: Failed to connect socket: php_network_getaddresses: getaddrinfo failed: Temporary ...
1
vote
2answers
879 views
What to do in case of SMTP 421 error?
I have some PHP code that help send emails. The way it works is that there is a list of unique keys, every key has to be sent to a different email address. Sometimes we need to be able to send 1000 ...
2
votes
2answers
2k views
Error sending email with php script smtp.gmail Pear Centos
I read a lot of articles who explains how to send an email with smtp, like this Send email using GMail SMTP server from PHP page
I have a cloud server and a localhost setup, both are the same (Centos ...
1
vote
1answer
249 views
PEAR Mail using gmail SMTP won't send 2 emails in sucession
I have PEAR Mail and Mail_mime all working very nicely using gmail's SMTP server to send. Thanks to some posts on here that helped me get that far!
But, in some scenarios, I need to send two emails, ...
0
votes
1answer
646 views
how to get a batch file send a email using PHP?
I have found numerous posts on Stacked overflow and other forums regarding sending the email using a batch file like: Send email using GMail SMTP server from PHP page
But none seems to work for me... ...
0
votes
0answers
323 views
Mail via PHP PEAR in Gmail account never arrives
I just finished setting up PEAR Mail in my cPanel system. I have a PHP file that is an httpservice called by a Flex app. My client uses Google Apps mail.
I set up a test script to send emails through ...
0
votes
1answer
2k views
PEAR Mail connection refused to smtp.gmail.com
I'm having endless trouble while trying to send mail using the pear mail package:
I'm using xampp on my local machine for testing purposes and the following code works perfectly:
//PEAR
...
0
votes
3answers
459 views
PHP Pear Mail help
this is my code
$from = "Whatever<whatever@gmail.com>";
$to = "whatever<whatever@hotmail.com>";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
$host = ...
3
votes
1answer
2k views
Using Mail_Mime to send attachment to GMail, receiving “noname” attachment
I've got a pretty simple website form that can take attachments. It sends to a gmail address using gmail's smtp. Everything is working great except that the file arrives as "noname" - no filename or ...
1
vote
5answers
4k views
Using Gmail SMTP to send email with PHP
I have a problem I have been working on for about a week and can't find an answer. As a preface to this all, I have searched the internet for all sorts of things. There are a lot of answers for this ...
0
votes
2answers
663 views
problem in sending mail by gmail smtp in server but works fine in localhost
I have opened a site in a free web hosting company which is not offering mail() facility so I have decided to implement this facility of sending emails using G-mail's SMTP server.
I have used PEAR' ...
1
vote
2answers
589 views
Changing the `from` address when sending an email through GMail
I'm trying to use PHP Pear Factory to send emails through GMail in one project. It has been successful, but there is something that is not working 100% properly.
I don't know why if I set ...
0
votes
2answers
1k views
unable to send email through gmail with php pear mail()
I am attempting to send mail through my gmail account from a Dedicated Godaddy server. I have attempted to send email through my company's email server but Godaddy kills port 25 with no workaround ...
4
votes
1answer
857 views
PEAR Mail, “unable to set sender”
I have a PHP mail script that successfully sends emails to everything BUT GMail addresses, so now I'm trying to create one with PEAR's Mail and Mail_Mime packages that can send to GMail. I've gotten ...
