Questions tagged [zend-mail]

Zend_Mail provides generalized functionality to compose and send both text and MIME-compliant multipart e-mail messages.

Zend framework has its own library that has many class to make application easy and sophisticated. Zend mail is a library that is used to send the mail. It has its class and methods that are used to send the mail.

Code on Github

Documentation

195 questions
0
votes
1 answer

magento pass variable from controller to another model

I want to send custom mail through smtp.For which I installed http://www.magentocommerce.com/magento-connect/aschroder-com-smtp-pro-email-free-and-easy-magento-emailing-for-smtp-gmail-or-google-apps-email.html. Which works properly for every mail…
Nikhil_K_R
  • 2,383
  • 5
  • 27
  • 51
0
votes
0 answers

Email coming through as HTML garbage

I have been using Zend_Mail successfully for years, however recently some clients have reporting that emails come through "broken", when they forward it back, it looks like this: MIME-Version: 1.0 Content-type: text/html; charset=iso-8859-1 …
azz0r
  • 3,283
  • 7
  • 42
  • 85
0
votes
1 answer

Zend_Mail is sent perfectly, but takes ages to arrive to gmail

I'm trying to send mails through gmail smtp. The process works fine and all, but for some reason, after altering the sending structure, the mails take AGES to arrive to gmail. I can wait 20 minutes or more for one of the system sent mails to drop…
John
  • 261
  • 1
  • 3
  • 16
0
votes
1 answer

zend framework 2 mail set default sender

ZF1 Zend_Mail has a static method setDefaultFrom($email, $name = null). Value specified here is used as default wherever it's not given for a concrete object. ZF2 has no more facade component Zend\Mail. Instead you should explicitly use…
Dmitry
  • 1,484
  • 2
  • 15
  • 23
0
votes
1 answer

getting error message PHP Fatal error: Call to undefined method Zend_Mail_Storage_Imap::requestAndResponse()

I am new to Zend Framework. I am working on an app to search through Gmail inbox by using the class (which I added to Zend/Mail/Storage/Imap.php) /** * do a search request * * This method is currently marked as internal as the API might change…
0
votes
1 answer

Zend_Mail error 500 > postfix/sendmail fatal: -n option not supported

I'm working on a Zend project in a very specific server configuration, our production environment is made of two dedicated servers, one for the company's email which host a postfix server and an other server for our web-application which is running…
0
votes
1 answer

Zend Mail is declared as Ratware

I'm using Zend_mail with SMTP in a wrapper class like this: //$_config has all required and valid attributes to send a mail successfully. $tmpconfig = Array('auth' => 'login', 'username' => $this->_config->MAIL_LOGIN, …
wog
  • 135
  • 3
  • 11
0
votes
2 answers

zend_mail email marked as spam in 4th try

i am using zend_mail as html to send an email confirmation to the server, for the 1st and the 2nd test the message was forwarded to inbox but then suddenly all messages where marked as spam. this is the php code: $mails = '
shampoo
  • 1,173
  • 12
  • 22
0
votes
1 answer

progress bar in php & jquery

i have a PHP process who send X mails After each mail send, i add a line on a database for tell that a mail is send. So, i wan't to create a progress bar for tell to the user that X mails are sended on Y ( Y = total) I have two jquery function like…
Mr_DeLeTeD
  • 825
  • 1
  • 6
  • 18
0
votes
1 answer

Zend-mail sending email Connection Timed Out error

I am trying to set-up a registration form that sends a welcoming email to the new member. The form works just fine on my localhost, but when trying to upload it to the remote server I get a "Connection Timed Out" error at the top of the page when…
ckwolfling
  • 211
  • 2
  • 6
0
votes
1 answer

How to use zend mail to manipulate the mail message?

Here is a sample email. What i would like to do is using zend mail to filter out the email with the specific header and subject, here are my reg experssion $pattern_subject = "#delivery errors|delivery failure|delivery has failed|delivery…
Leo Chan
  • 4,217
  • 8
  • 31
  • 47
-1
votes
2 answers

Zend Mail - Pdf Attachment - imbedded png gets scrambled

I've got my Zend_Mail setup and working fine, but the png images in my pdf attachment get scrambled. This is the bit responsible for the attachment: $filecontents = file_get_contents($attachment); $att =…
Sephen
  • 1,111
  • 3
  • 16
  • 38
-1
votes
1 answer

Encoding email with Zend_Mail_Storage_Pop3

I try get email with Zend_Mail_Storage_Pop3 but the chars come with encoding strange. Example Endere=E7o Paran=C3=A1 shold be Endereço Paraná
Daniel Lemes
  • 113
  • 10
-1
votes
1 answer

Magento:exception 'Zend_Mail_Transport_Exception' with message 'Unable to send mail

Magento 1.7, Qmail as smtp, Parallel plesk 10.3, Centos Since a few days one of my magento installation is not sending email, the problem affect only one magento installation. the excepTion log report: 2013-10-14T15:05:41+00:00 ERR (3): exception…
user1847437
  • 213
  • 1
  • 3
  • 12
-8
votes
1 answer

Zend Mail not sending any emails

So Zend_Mail should be easy, right? Here is my code: Zend_Mail::setDefaultTransport(new Zend_Mail_Transport_Postmark('e8eeb5e5-bdbf-47cb-bd66-8b7f20d2c08e')); $mail = new…
user1083320
  • 1,836
  • 8
  • 22
  • 29
1 2 3
12
13