Re: Email::send() in a loop. (1.2.x.x)

2008-04-08 Thread CDMoyer
>Posting fixes here isn't going to help dude...You heed to head over to trac >and submit a NEW ticket... I'm just following the instructions on Trac that say to always mail the list first if you think something is a bug. ;) > In the interim I guess you can just set your body manually in the > lo

Re: Email::send() in a loop. (1.2.x.x)

2008-04-08 Thread mbavio
On Apr 8, 3:05 am, CDMoyer <[EMAIL PROTECTED]> wrote: > > Now I'm confusedCDMoyer, you posted the link to the ticket, but did you > > read it? > > > One reply says you need to reset(), the other reply says that the header > > problem was fixed 6 months ago... > > Right, this is not the header

Re: Email::send() in a loop. (1.2.x.x)

2008-04-08 Thread Baz L
In the interim I guess you can just set your body manually in the loop. On Apr 8, 1:05 am, CDMoyer <[EMAIL PROTECTED]> wrote: > > Now I'm confusedCDMoyer, you posted the link to the ticket, but did you > > read it? > > > One reply says you need to reset(), the other reply says that the header

Re: Email::send() in a loop. (1.2.x.x)

2008-04-08 Thread Baz
OK, gotcha... Posting fixes here isn't going to help dude...You heed to head over to trac and submit a NEW ticket... On Tue, Apr 8, 2008 at 1:05 AM, CDMoyer <[EMAIL PROTECTED]> wrote: > > > Now I'm confusedCDMoyer, you posted the link to the ticket, but did > you > > read it? > > > > One rep

Re: Email::send() in a loop. (1.2.x.x)

2008-04-08 Thread CDMoyer
> Now I'm confusedCDMoyer, you posted the link to the ticket, but did you > read it? > > One reply says you need to reset(), the other reply says that the header > problem was fixed 6 months ago... Right, this is not the header issue, and just like in the bug I linked, reset() is not the idea

Re: Email::send() in a loop. (1.2.x.x)

2008-04-07 Thread Baz
Now I'm confusedCDMoyer, you posted the link to the ticket, but did you read it? One reply says you need to reset(), the other reply says that the header problem was fixed 6 months ago... I'm confused. --~--~-~--~~~---~--~~ You received this message because yo

Re: Email::send() in a loop. (1.2.x.x)

2008-04-07 Thread mbavio
Has everybody forgotten how to search? http://groups.google.com/group/cake-php/browse_thread/thread/f71da62dc353b315/84b00fbeda1df451?hl=en&lnk=gst&q=email+reset#84b00fbeda1df451 That post hasnt two days. Please, search before post, ALWAYS! Cheers, mbavio On Apr 6, 7:01 pm, "Chris Hartjes" <[E

Re: Email::send() in a loop. (1.2.x.x)

2008-04-06 Thread Chris Hartjes
On Sun, Apr 6, 2008 at 11:30 AM, CDMoyer <[EMAIL PROTECTED]> wrote: > > I ran into this the other day, I think the behavior is a bit > unexpected, and probably a bug. > > If you do something like: > > $this->Email->subect = 'Hi!'; > $this->Email->from = '[EMAIL PROTECTED]'; > foreach ($recip

Email::send() in a loop. (1.2.x.x)

2008-04-06 Thread CDMoyer
I ran into this the other day, I think the behavior is a bit unexpected, and probably a bug. If you do something like: $this->Email->subect = 'Hi!'; $this->Email->from = '[EMAIL PROTECTED]'; foreach ($recipient as $r) { $this->Email->to = $r; $this->Email-send(sprintf($body, $r)); } Essen