Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
79 views

Can't understand why Zend_Mail::addHeader() strips newlines

(Since this is my first SO question, let me just say I hope it's not too Zend-specific. As far as I can tell this shouldn't be a problem. Although I could have posted it in a Zend-specific forum, I ...
6
votes
4answers
164 views

Get mail source using Zend_Mail

How can I get mail source (headers, body, boundary - all together as a plain text) using Zend_Mail (POP3). It returns parsed parts by default, I need the raw message source.
5
votes
3answers
250 views

PHP, sendmail and transports - how to speed up mail sending

I just wrote a set of bulk-emailing classes for handling enormous amounts of emails and parsing their content according to passed params. If I test an email on 1000 random recipients and 1000 random ...
4
votes
2answers
446 views

Zend Framework: How to read email attachments (and save to disk)?

I am currently using Zend_Mail_Storage_Imap to read email messages using IMAP. I am able to read the email body (text and html) thanks to the documentation. Now I'm trying to figure out how to save ...
4
votes
2answers
3k views

Problem when sending mail with Zend Mail?

I'm trying to send an e-mail with ZendMail ( this simple script sums it up ) <?php require_once 'Zend/Mail.php'; $mail = new Zend_Mail(); $mail->setBodyText('My Nice Test Text'); ...
4
votes
2answers
428 views

Is it necessary to wrap long lines when sending emails?

I'm using Zend_Mail to send emails. Few articles (like first example on this page) have suggested to wrap long lines in message body. Questions: Is it necessary to use wordwrap(), in case any of ...
4
votes
3answers
3k views

How to send an email using Zend_Mail, sendmail, and localhost?

I'm developing a zend framework application that includes a simple email function. The development version is running on my computer, which is running Ubuntu. The production version is going to run on ...
3
votes
3answers
141 views

Handling undelivered emails using Zend Mail

I'm sending newsletter using Zend Mail. I have used setReturnPath() to put all undelivered mail notifications in one place. And what now? How to get the list of addresses which were unreachable? ...
3
votes
5answers
405 views

Magento : How to send contact form email with attachment in magento?

Is there any default functionality in Magento for a simple contact form that needs to send a file attachment? Or do I need to customise it with Zend's mail function? Any help or suggestions would be ...
3
votes
2answers
634 views

Zend_Mail - read Gmail messages via POP

I am trying to read my Gmail account with Zend_Mail. The request just seems to time out. Is there an issue with my $config? public function indexAction() { $config = array( 'host'=> ...
3
votes
3answers
569 views

Zend Mail - how to read without emails being marked as opened

I'm using zend mail extended with zend_mail_storage_imap and I built an application that looks for keywords in user's emails. The problem is that it opens up each email and keeps it marked as read. ...
3
votes
3answers
1k views

when using Zend_mail my emails seem to be treated as spam, send through outlook and there not?

I'm trying to sort out an opt in mailing list system. I understand the basic principles and design required but i'm having an issue with it being picked up as spam. If i send a html email through ...
3
votes
2answers
936 views

Why doesn't this mail message decode correctly?

I have this code. It's from the Zend Reading Mail example. $message = $mail->getMessage(1); // output first text/plain part $foundPart = null; foreach (new ...
2
votes
3answers
87 views

I get following error when sending a mail using zend frame work. I also included my code

Fatal error: Uncaught exception 'Zend_Controller_Dispatcher_Exception' with message 'Invalid controller specified (error)' in C:\xampp\htdocs\zend\library\Zend\Controller\Dispatcher\Standard.php:248 ...
2
votes
1answer
70 views

How to preview Zend_Mail's HTML code?

I'm creating a newsletter with dynamic content via Zend_Mail, however i want to validate the generated HTML code against W3C, is there a way to get the entire email code to be sent so I can grab it an ...
2
votes
1answer
135 views

Multiple Zend_Mail configurations in application.ini

I'm am using Zend Framework. I need to put multiple mail configurations in application.ini for Zend_Mail (using Zend_Application_Resource_Mail). Is it possible to do this using the standard classes ...
2
votes
1answer
44 views

Zend_Mail send and Zend_Progressbar

Does anybody know a good example how to send mail with attachments and display a progressbar in JavaScript (jQuery)?
2
votes
2answers
167 views

MIME “multipart/related” Structure and Apple Mail. Is it a Bug?

I build a E-Mail with PHP Zend Framework Class Zend_Mail. There is one text- and one html-part with related inline-images. I want to attach one pdf-file too. My question is about the mime-structure. ...
2
votes
2answers
120 views

Zend Mail - Where to instantiate it?

I'm using a Data Mapper / Gateway design pattern. So I have a: Mapper; Gateway; Domain Object (mainly with getters and setters); A controller; A view. My question is: where should I instantiate the ...
2
votes
1answer
278 views

Zend Mailer error “From header set twice”

My question in based on Zend Mail I have a class that extends Zend Mail. Basically it is supposed to send two different mails to users upon registration. It has two functions sendRegistrationMail ...
2
votes
1answer
387 views

Spam check before sending using Zend_Mail

I'm using Zend_Mail and the following code to send my email messages. $mail = new Zend_Mail('UTF-8'); $mail ->setBodyText($plainBody) ->setBodyHtml($htmlBody) ->setSubject($subject) ...
2
votes
1answer
191 views

What's the most efficient way to sort through emails with zend_mail?

I'm sorting through emails looking for specific instances of strings and it is taking too long. I would like to get the time down to half a second per email, and it's currently taking about 2-2.5 ...
2
votes
1answer
101 views

mails through amtp using zend mail

Can someone please suggest me from where to download zend framework and the codes for sending mails using gmail smtp and zend in php?? please...
2
votes
4answers
1k views

How to Use Zend Library without installation of Zend Framework

How to use zend library without using zend framework installation? I am trying to use zend library(Mail and Mime) without zend framework installation, its not returning any error messages... ...
2
votes
1answer
347 views

Can't retrieve more than 2 gmail messages using Zend framework imap access - server dies - doens't report any error

Hi guys I'm working on a google apps application. Basically I've set it up so users can add multiple gmail addresses and check on their inboxes in the application. It works fine with a google apps ...
2
votes
2answers
788 views

Zend_Mail fail to send email, output message : Connection timeout

I try to write codes about sending email using Zend Framework. Here is the code, $mail = new Zend_Mail('utf-8'); $mailConfig = array( 'auth'=> 'login', 'username' => 'sample@gmail.com', ...
1
vote
1answer
159 views

PHP: How to determine email attachment's MIME type?

I'm using Zend's Zend_Mail_Storage_Pop3 to connect to mail server, open an email, and iterate through its attachments. If the attachment is a PDF, I need to download it. At each iteration of each ...
1
vote
1answer
120 views

Zend_Mail - Reading Email attachments - Bounce back emails that are too large

I am working on a application using zend and I am using zend_mail to read the emails. I am able to get all the emails and parts of the email. The only issue I am having is if a user send a large ...
1
vote
2answers
63 views

How do we use more than one message in flashMessenger using zend framework

I am using zend. I have the following piece of code, .... $cust = 'test@test.com'; $list.='Also Sent Mail to following members'; foreach($m_list as $value) { ...
1
vote
2answers
72 views

Sending mail with css is not applying in zend

I am using zend.Following is my piece of code in my Action ....... // create view object $html = new Zend_View(); $html->setScriptPath(APPLICATION_PATH . ...
1
vote
2answers
86 views

Zend_Mail:: Is there any way to add a recipient using the format: “Name <email>”?

The reason I ask is because I want to have one editable field where users can enter email addresses and optionally, the name of the email address holder as well. thanks!
1
vote
2answers
131 views

Zend_Mail will not send bcc to sender address

I have a problem, when I want to send mail to a customer and also to the admins. The problem is, that the customer receives the mail, but the bcc will not if the from = bcc. Is there any setting I ...
1
vote
1answer
207 views

Bootstrap certain resources, such as mail fails

Initial Problem protected function _initMail() { $this->bootstrap('mail'); } in my Bootstrap.php Fails with a: Uncaught exception 'Zend_Application_Bootstrap_Exception' with ...
1
vote
1answer
98 views

How to forward mail message using Zend Mail?

How do I forward Zend Mail Message using Zend Mail? I've found similar question with one answer, but this solution does not work (the body content is encoded)
1
vote
1answer
256 views

Send mail with Zend_Mail through Gmail smtp server

I'd like to use Gmail smtp server to send email with Zend_Mail. I had this code Zend_Mail::setDefaultTransport(new Zend_Mail_Transport_Smtp("smtp.googlemail.com", array( "auth" => "login", ...
1
vote
0answers
54 views

Zend Mail goes to spam box in gmail but outlook goes to inbox, why?

I got this same problem: http://framework.zend.com/issues/browse/ZF-10200 this guy has solved it but i don't understand it. he said: "I sent once "HELO/EHLO" and my issue solved." anyone could ...
1
vote
2answers
54 views

How to get the charset from a Zend_Mail_Part object?

I am trying to determine the character set of a Zend_Mail_Part object (I am reading email). How can I get the charset information? I can get the content-type header by doing this: echo ...
1
vote
2answers
80 views

PHP - Bulk mailing and checking for server responses

We send a lot of emails to a lot of our users (ranges in 20k+ per day). One of the major problems we face are invalid or dead emails - sometimes our users delete their accounts, change their email ...
1
vote
1answer
219 views

Problem with Gmail messages missing headers

I'm trying to programmatically parse my Gmail for various indexing functions, and am having trouble finding certain headers that I thought were standard email headers. I'm using the Zend IMAP ...
1
vote
3answers
197 views

Send mail without blocking 'execution'

I'm using Zend_Mail in a Zend Framework application to send an e-mail with the contents of a web-based contact form. The mailing itself works fine ( im using a Google Apps account ) but it can take ...
1
vote
1answer
92 views

How do I move an email to a different folder using zend_mail and zend_mail_storage_imap?

I'm using these libraries for an email application I'm building. $storage = new Zend_Mail_Storage_Imap($imap); if (strpos($storage->getMessage($i),'chocolate') !== FALSE ) { //Move to ...
1
vote
1answer
1k views

Send SMTP Email through Exchange Server Using Zend_Mail - How to Diagnose these Errors

I have the following code: $config = array( 'auth' => 'login', 'username' => 'domain\user', 'password' => 'password', 'ssl' => 'tls', 'port' => 25, ); $tr = new ...
1
vote
1answer
437 views

Problem with sending multiple mails per SMTP connection with Zend_Mail and Exim

I have exim mailserver on my dedication server. I'm trying to send about 800 mails at once with zend_mail But only about 200 of them sending I have no php errors in error_log I tried to log if it too ...
1
vote
2answers
169 views

Zend sending email

i have a project that need to send email. and i use zend as my framework. i use XSL for email templat and save email parameter as array that will turn to XML before send the email. i create my own ...
1
vote
1answer
796 views

Zend_Mail sent email is treated as SPAM

Please tell me what I am doing wrong. I am sending an email using the Zend_Mail class like this: $message = <<<STR You have a new invoice! Sign in to your clientarea to see it. Best ...
1
vote
0answers
111 views

Getting “Could not read” while trying to connect to 127.0.0.1 in Zend_Mail_Smtp_Transport

I app is a PHP app using Zend Framework to send emails. I am trying to connect to a postfix on my local system and getting this exception in 10-12% of times when I try to send an email. Not able to ...
1
vote
1answer
281 views

Imap IDLE in Zend Framework

I am searching for the IMAP IDLE function in the Zend Framework. I would either like to know whether it is integrated or if it could be done. I have read that the IlohaMail library seems to have ...
1
vote
1answer
99 views

Adding an encapsulated email (like a forwarded email) from Zend Mail

I'm trying to get Zend_Mail to send an encapsulated message - as though it's forwarding an email. $attachedContent = "<h1>H1 Email</h1>"; $emailContent = "<h1>Email Content>"; ...
1
vote
1answer
347 views

I get funny characters when reading multipart and text messages using Zend Mail?

Hi guys I've shifted to using the zend framework for reading messages from an inbox however when reading some html messages I see a lot of weird charcters like: don’t looks like don=92t Plus ...
1
vote
3answers
764 views

Zend_Mail: How to fix PHP fatal error: Allowed memory size exhausted?

I have a cron job that sends emails to a list of subscribers, one at a time in a foreach loop, with a PDF attachment. I got this message from the cron script: Fatal error: Allowed memory size of ...

1 2