Re: sending mail through Gmail SMTP by Email component?

2014-06-11 Thread Indrajeet Singh
, On Thursday, 23 September 2010 20:22:18 UTC+5:30, pang wrote: I met a strange problem while using gmail as SMTP server. What I want to do is to send bulk email with my domain email ser...@tagroup.se javascript:, I used cakephp Email component to handle this , I followed exact configuration

Re: sending mail through Gmail SMTP by Email component?

2014-06-11 Thread indrajeet.sarit...@gmail.com
.'); -- View this message in context: http://cakephp.1045679.n5.nabble.com/sending-mail-through-Gmail-SMTP-by-Email-component-tp2851314p5718486.html Sent from the CakePHP mailing list archive at Nabble.com. -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com

Email Component in 1.3 - Messages fail to send from a Lotus Notes server when one or more email addresses aren't found.

2013-06-05 Thread JDRopp
The email component only offers 550 5.0.0 ... User unknown.. What's odd is that the message isn't sent at all (i.e., no one on the distribution list receives the message). I've tried setting the return attribute without success. Anyone have this experience and/or a soltuion? Thanks, Jeff

Re: Email Component, cc and bcc not working?

2012-11-20 Thread Ben Thrum
to be arrays. Try wrapping them in an array and see how that goes for you. Cheers, Graham Weldon http://grahamweldon.com Louie Miranda wrote: Hi, I have setup the email component properly on cakephp. I can send and it's ok for both html and text. I tried adding the cc and bcc option

Re: [ASK] Email Component : 101 Connection time out

2012-02-10 Thread thom
On Fri, Feb 10, 2012 at 9:11 AM, thom cyber.phanto...@gmail.com wrote: Hello, I'd like to ask about EmailComponent in CakePHP. M trying to send email via SMTP (Google), gimme error 110: Connection timed out What does it mean? And how to solve it? FYI, M using Ubuntu 11.04. Thank you before

[ASK] Email Component : 101 Connection time out

2012-02-09 Thread thom
Hello, I'd like to ask about EmailComponent in CakePHP. M trying to send email via SMTP (Google), gimme error 110: Connection timed out What does it mean? And how to solve it? FYI, M using Ubuntu 11.04. Thank you before for any response. -- Regards,,, thom http://mynameisthom.blogspot.com

How to declare a cakephp email component

2012-01-06 Thread Daniel
When I try to declare an email component: $email = new Email(); ... I get the following error: Fatal error: Class 'Email' not found in C:\xampp\htdocs\testapp \controllers\users_controller.php on line 72 I tried adding a reference at the top of my controller: var $components = array('Email

Re: How to declare a cakephp email component

2012-01-06 Thread Tilen Majerle
nope, EmailComponent is deprecated, use CakeEmail App::uses('CakeEmail', 'Network/Email'); $email = new CakeEmail; -- Lep pozdrav, Tilen Majerle http://majerle.eu 2012/1/6 Daniel danwgr...@gmail.com When I try to declare an email component: $email = new Email(); ... I get the following

Re: Email component working wrong

2011-09-11 Thread euromark
are you sure that the username is actually an email address? or did you wanna write $User['User']['email'] ? On 9 Sep., 16:48, Piotr Chabros pchabros.p...@gmail.com wrote: Hello, I have a function sending email to all the users, and every email sent is copied to another email address too:

Re: Email component working wrong

2011-09-11 Thread WebbedIT
Duplicate thread: http://groups.google.com/group/cake-php/t/a749cc9e6c8f2869 On Sep 11, 9:18 am, euromark dereurom...@googlemail.com wrote: are you sure that the username is actually an email address? or did you wanna write $User['User']['email'] ? On 9 Sep., 16:48, Piotr Chabros

Re: CakePHP email component problem

2011-09-11 Thread WebbedIT
duplicate thread: http://groups.google.com/group/cake-php/browse_thread/thread/13a87371c17428e euromark has started supporting this at other thread On Sep 10, 2:47 pm, Piotr Chabros pchabros.p...@gmail.com wrote: Hello, in my application there is a part of a code responsible of sending an

Re: Email component working wrong

2011-09-11 Thread Piotr Chabros
Yes I am sure that the 'username' is the email. Sorry for the double post. On Sep 11, 10:18 am, euromark dereurom...@googlemail.com wrote: are you sure that the username is actually an email address? or did you wanna write $User['User']['email'] ? On 9 Sep., 16:48, Piotr Chabros

Email component working wrong

2011-09-10 Thread Piotr Chabros
Hello, I have a function sending email to all the users, and every email sent is copied to another email address too: [CODE HERE] $this-Email-to = $User['User']['username']; $this-Email-bcc = array('b...@hotmail.co.uk'); [CODE HERE] The thing is the email sent to the user is different than the

CakePHP email component problem

2011-09-10 Thread Piotr Chabros
Hello, in my application there is a part of a code responsible of sending an emails to my users. It is a loop cycling through the whole database of users and just sending the email. Also when any email is sent, there is a copy sent to another email addres. The problem is that some of the users

Re: CAKEPHP Email component not working in live server.. how to get the error response why that mail is not going

2011-08-29 Thread Gmail Support
Hi Thanx for your response. But my controller has 4 mail functions but none of the mails are going in Live server only. Still I try to find a solution. When a third party guys hitting our url we are sending mail to users. This is working in my local. But i not used auth component or any

Re: CAKEPHP Email component not working in live server.. how to get the error response why that mail is not going

2011-08-29 Thread John Hardy
Can you send an email VIA command line (sendmail or postfix)? On Aug 29, 2011, at 4:42 AM, Gmail Support wrote: Hi Thanx for your response. But my controller has 4 mail functions but none of the mails are going in Live server only. Still I try to find a solution. When a third party

Re: CAKEPHP Email component not working in live server.. how to get the error response why that mail is not going

2011-08-23 Thread ShadowCross
If using the EmailComponent works in other parts of your controller, and the code excerpt you provided was just manually entered into your original email (the first two lines would have resulted in a syntax error as it is written) you can try adding $this-Email-return = Mysitename

CAKEPHP Email component not working in live server.. how to get the error response why that mail is not going

2011-08-22 Thread CakePHP.Saint
I using cakephp email component. In my live server $this-Email- send() return success. but mail is not receiving. what is the problem?? i need to find whats the error ? $this-Email-from = Mysitename no-re...@mysite.com; $this-Email-to = sam...@gmail.com

Re: CAKEPHP Email component not working in live server.. how to get the error response why that mail is not going

2011-08-22 Thread abhimanyu bv
maybe you have forgot to configure smtp settings in your cakephp. -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from

Re: CAKEPHP Email component not working in live server.. how to get the error response why that mail is not going

2011-08-22 Thread Gmail Support
no dude... other mail functions from this controller are working fine On Mon, Aug 22, 2011 at 2:05 PM, abhimanyu bv vmabhi...@gmail.com wrote: maybe you have forgot to configure smtp settings in your cakephp. -- Our newest site for the community: CakePHP Video Tutorials

Re: GPG/PGP Signed with Email Component

2011-07-22 Thread Christophe Vandeplas
, My webapplication needs to send out emails that are signed with a GPG signature. However as I am using the Email component this seems a little more complicated as I can't really figure out how to do it. Any help will be appreciated and compensated with Belgian beer if we ever meet. Signing

Re: GPG/PGP Signed with Email Component

2011-07-22 Thread bujanga
The email component is extensible. See this example: http://bakery.cakephp.org/articles/dankroad/2011/01/30/integrate_amazon_simple_email_service_ses_into_existing_application While it's purpose is different than yours it should give some ideas. On Fri, Jul 22, 2011 at 8:44 AM, Christophe

GPG/PGP Signed with Email Component

2011-07-18 Thread Christophe Vandeplas
Hello, My webapplication needs to send out emails that are signed with a GPG signature. However as I am using the Email component this seems a little more complicated as I can't really figure out how to do it. Any help will be appreciated and compensated with Belgian beer if we ever meet

Re: GPG/PGP Signed with Email Component

2011-07-18 Thread bujanga
needs to send out emails that are signed with a GPG signature. However as I am using the Email component this seems a little more complicated as I can't really figure out how to do it. Any help will be appreciated and compensated with Belgian beer if we ever meet. Signing data using GnuPG

Re: can't send a email using default cake php email component

2011-05-29 Thread madusanka hettiarachchi
Hi all, thank u guys for the help, I did it! Sathiya S, thanks for your link! On Sat, May 28, 2011 at 5:58 AM, Ryan Schmidt google-2...@ryandesign.comwrote: On May 27, 2011, at 18:49, yosef.ke...@gmail.com wrote: There's nothing to do with the version. On principal, it's a good idea to

Re: can't send a email using default cake php email component

2011-05-27 Thread Sathia S
cake php email component to gmail account? is there any configurations to send the mail in somewhere?(like php.ini) ya we can send easily form gmail account using cakePHP . I also studied form cakePHP manual , I works for me This is my code http://sathia27.wordpress.com/2011/04/18

Re: can't send a email using default cake php email component

2011-05-27 Thread Ryan Schmidt
On May 27, 2011, at 00:33, madusanka hettiarachchi wrote: im new to php. I tried to send a mail using existing code in cake php mannual. bt it doesnt give an error and not send the email. so I want to know, can't send a email using default cake php email component to gmail

Re: can't send a email using default cake php email component

2011-05-27 Thread yosef . kevin
Subject: Re: can't send a email using default cake php email component On May 27, 2011, at 00:33, madusanka hettiarachchi wrote: im new to php. I tried to send a mail using existing code in cake php mannual. bt it doesnt give an error and not send the email. so I want to know

Re: can't send a email using default cake php email component

2011-05-27 Thread Ryan Schmidt
On May 27, 2011, at 18:49, yosef.ke...@gmail.com wrote: There's nothing to do with the version. On principal, it's a good idea to update to the latest version. It might fix bugs you don't even know you're experiencing. But I think u need to configure the apache to send an email since it was

can't send a email using default cake php email component

2011-05-26 Thread madusanka hettiarachchi
hi, im new to php. I tried to send a mail using existing code in cake php mannual. bt it doesnt give an error and not send the email. so I want to know, can't send a email using default cake php email component to gmail account? is there any configurations to send

Redirect problem - blank page, Email component

2010-11-18 Thread Invi
with SQL data and above it a proper link where it should redirect. I have Notification component which uses core Email component. In this Notification component I have a method: function send($subject = 'Message', $id, $template, $text = , $mail = WEBSTUDIO_EMAIL, $private = false

Debugging the Email component

2010-10-05 Thread Jeremy Burns
I am using the Email component with varying levels of success. A single function that can send a number of emails sometimes works, sometimes fails. And yes, I am using $this-Email-reset(); In one case I have two very similar emails that are set up the same: $this-Email-reset

Re: Debugging the Email component

2010-10-05 Thread Jeremy Burns | Class Outfit
began to flow through. Jeremy Burns Class Outfit jeremybu...@classoutfit.com http://www.classoutfit.com On 5 Oct 2010, at 17:02, Jeremy Burns wrote: I am using the Email component with varying levels of success. A single function that can send a number of emails sometimes works, sometimes fails

Re: Debugging the Email component

2010-10-05 Thread j.blotus
, Jeremy Burns wrote: I am using the Email component with varying levels of success. A single function that can send a number of emails sometimes works, sometimes fails. And yes, I am using $this-Email-reset(); In one case I have two very similar emails that are set up the same

Re: Debugging the Email component

2010-10-05 Thread Jeremy Burns | Class Outfit
random. I'm not blaming the email component - I just wish there was a better way of tracking down those sort of errors. Jeremy Burns Class Outfit jeremybu...@classoutfit.com http://www.classoutfit.com On 5 Oct 2010, at 18:09, j.blotus wrote: 99% of the problems I ever had with EmailComponent

Re: sending mail through Gmail SMTP by Email component?

2010-09-24 Thread Andrei Mita
sure it's surrounded by those carrots. On Sep 23, 10:52 am, pang y...@tagroup.se wrote: I met a strange problem while using gmail as SMTP server. What I want to do is to send bulk email with my domain email serv...@tagroup.se, I used cakephp Email component to handle this , I

sending mail through Gmail SMTP by Email component?

2010-09-23 Thread pang
I met a strange problem while using gmail as SMTP server. What I want to do is to send bulk email with my domain email serv...@tagroup.se, I used cakephp Email component to handle this , I followed exact configuration as mentioned in links below (CakePHP official tutorial site), but the email

Re: sending mail through Gmail SMTP by Email component?

2010-09-23 Thread archF6
email with my domain email serv...@tagroup.se, I used cakephp Email component to handle this , I followed exact configuration as mentioned in links below (CakePHP official tutorial site), but the email can't be sent http://book.cakephp.org/view/1290/Sending-A-Message-Using-SMTP My configuration

Re: can't send gmail by using Email component

2010-09-22 Thread stefanski
gmail requires some security stuff, that the default cakePHP email component does not support. I'm successfully using swiftmailer and the SwiftMailer Component by Gediminas Morkevicius to send mails via GMail. On 21 Sep., 17:18, pang y...@tagroup.se wrote: I follow the configuration

can't send gmail by using Email component

2010-09-21 Thread pang
I follow the configuration in the cakhphp tutorial http://book.cakephp.org/view/1290/Sending-A-Message-Using-SMTP, to set smtp options like follows: /* SMTP Options */ $this-Email-smtpOptions = array( 'port'='465', 'timeout'='30', 'host' = 'ssl://smtp.gmail.com',

email component and special chars

2010-08-31 Thread euromark
are expicitly not allowed in the name part? i though about using Inflector::slug() on the username prior to passing in to the email component but that would change all äöüé etc (which are valid) as well any ideas? Check out the new CakePHP Questions site http://cakeqs.org and help others

Re: email component and special chars

2010-08-31 Thread euromark
like $this-Email-to = $username . '' . $email ''; i thought i can put whatever i want in $username here and it works in outlook etc. the email gets through only the email component aborts... maybe a bug? On 1 Sep., 00:05, euromark dereurom...@googlemail.com wrote: i just stumpled on that after

Re: email component and special chars

2010-08-31 Thread euromark
like $this-Email-to = $username .'' . $email .''; works with outlook smtp etc but the email component aborts with any non a-z chars... maybe a bug? On 1 Sep., 00:05, euromark dereurom...@googlemail.com wrote: i just stumpled on that after checking the error logs seems it only happens

Re: Email Component

2010-07-30 Thread cricket
On Thu, Jul 29, 2010 at 10:09 AM, AD7six andydawso...@gmail.com wrote: and no the ones in views/email directory where did you read it would look in views/email? Perhaps huoxito meant views/layouts/email/ Check out the new CakePHP Questions site http://cakeqs.org and help others with their

Re: Email Component

2010-07-29 Thread Louie Miranda
'; $this-Email-subject = 'Test / Developer Code PHP CAKEPHP'; $this-Email-send('Hello message body from LOUIE MIRANDA CAKEPHP!'); } } It's actually very simple. Just add the email component and create a function. -- Louie Miranda - Email: lmira...@gmail.com - Web: http://www.louiemiranda.com

Re: Email Component

2010-07-29 Thread huoxito
Yes i got that, but what i found strange is that the cakebook says we have to create 'html' and 'text' in both views and elements directory besides why would i use both 'text' and 'html' if one of them is enough to customize my emails... and when we set the template using the Email Component

Re: Email Component

2010-07-29 Thread AD7six
'text' and 'html' if one of them is enough to customize my emails... If you plan on sending out text-only emails that's a fair argument. if you're thinking of sending out html-only emails well ... and when we set the template using the Email Component it seems to refer to the files

Email Component

2010-07-28 Thread huoxito
Am I the only one who finds the Email Component doc, http://book.cakephp.org/view/1286/Sending-a-basic-message, really weird? I mean i'll have to try out a lot of things here to understand how it works... Check out the new CakePHP Questions site http://cakeqs.org and help others

Re: Email Component

2010-07-21 Thread Jeremy Burns | Class Outfit
to a new dir on my server. It really makes no sense. On Tue, Jul 20, 2010 at 8:49 PM, Hugo M ham1...@gmail.com wrote: Strange, do you have any configuration related with Email component? if I can send mail with mail() I can send with the component :S 2010/7/20 Ed Propsner crotchf

Re: Email Component

2010-07-21 Thread Ed Propsner
to a different dir on the server. Everything went smooth enough except now I'm unable to send emails. Mail sends ok using PHP mail() function but not when using the email component. The email is NOT set up for SMTP. Am I overlooking something here? I'm not sure what the problem is. Check out

Re: cakephp email component

2010-07-20 Thread Jeremy Burns | Class Outfit
It is so hard to help you with questions like this when we don't know what's going wrong. Can you be more specific? Can you paste an error message? Jeremy Burns Class Outfit jeremybu...@classoutfit.com http://www.classoutfit.com On 19 Jul 2010, at 08:12, fadhli - wrote: ?php class

Email Component

2010-07-20 Thread Ed Propsner
I recently changed names on one of my sites and moved the entire site to a different dir on the server. Everything went smooth enough except now I'm unable to send emails. Mail sends ok using PHP mail() function but not when using the email component. The email is NOT set up for SMTP. Am I

Re: Email Component

2010-07-20 Thread Hugo M
Strange, do you have any configuration related with Email component? if I can send mail with mail() I can send with the component :S 2010/7/20 Ed Propsner crotchf...@gmail.com I recently changed names on one of my sites and moved the entire site to a different dir on the server. Everything

Re: Email Component

2010-07-20 Thread Ed Propsner
related with Email component? if I can send mail with mail() I can send with the component :S 2010/7/20 Ed Propsner crotchf...@gmail.com I recently changed names on one of my sites and moved the entire site to a different dir on the server. Everything went smooth enough except now I'm unable

Re: Email Component

2010-07-20 Thread Hugo M
out of the box and I didn't have to change a thing. It was working perfectly until I changed to a new dir on my server. It really makes no sense. On Tue, Jul 20, 2010 at 8:49 PM, Hugo M ham1...@gmail.com wrote: Strange, do you have any configuration related with Email component? if I can

cakephp email component

2010-07-19 Thread fadhli -
?php class MessagesController extends AppController { var $name = 'Messages'; var $components = array('Email'); function _sendNewMessage($id) { $message = $this-Message-read(null,$id); $this-Email-to = $message['Client']['email'];

Email Component - Double Send

2010-06-18 Thread alex
Hi, I have used this component with this following snippet code: foreach( $list as $mail ){ $this-Email-subject = 'HermesList'; $this-Email-replyTo = 'i...@alex.it'; $this-Email-from =

Re: Email Component - Double Send

2010-06-18 Thread John Andersen
Have you confirmed that your data are correct? That is, that you don't have the same email address twice in the $mail array that you use! You could for example log each email address that your are sending an email to. Enjoy, John On Jun 17, 10:30 pm, alex gen...@gmail.com wrote: Hi, I have

Re: Email component

2010-06-17 Thread Marcelo F Andrade
On Wed, Jun 16, 2010 at 2:19 PM, Daniel daniel.g...@gmail.com wrote: (..) but when i include in my controller a config.php file: ?php define('EMAIL', 'exam...@domain.com'); ? and try to use EMAIL to set the destination, it doesn't work :-(. Not sure, but maybe you should try this:

Re: Email component

2010-06-17 Thread John Andersen
It looks like I have the same setup as you have, an email in a variable and a default email as a constant. My code is like this: [code] define('DEFAULT_TO_ADDRESS','ad...@somewhere.eu'); ... $this-Email-to = (APPLICATION_STATE == APPLICATION_STATE_PROD) ? ''. $emailAddress.'' : DEFAULT_TO_ADDRESS;

Email component

2010-06-16 Thread Daniel Gbur
hi all, i have a problem with Email compnent. when i set the destination adress with a string: $this-Email-to = 'exampleem...@domain.com'; it's working ok, but when i try to set the destination adress with a variable: $to = 'exampleem...@domain.com'; $this-Email-to = $to; it doesn't work. i

Re: Email component

2010-06-16 Thread Dilip Godhani
Hello Use this its work may ne $to = 'exampleem...@domain.com'; $this-Email-to = $to; Best luck BYe BYe On Wed, Jun 16, 2010 at 12:25 AM, Daniel Gbur daniel.g...@gmail.com wrote: hi all, i have a problem with Email compnent. when i set the destination adress with a string:

Email Component and Model

2010-06-16 Thread Andrei Mita
Hello, I have a model Email that conflicts with the component when I try to send emails. I have researched the group and saw that other people had the same issue but did not find a solution. Is there a standard way to deal with the problem or do I have to rename my model, controller and view

Re: Email Component and Model

2010-06-16 Thread jodator
I had the same issue ;) Fastest: rename model or component. Or you could try use email model in controller like this (I havn't tested it before): $uses = array('MyOtherModel'); ... function mail_me($id) { $emailModel = ClassRegistry::init('Model'); $emailField = $emailModel-find('email',

Re: Email Component and Model

2010-06-16 Thread Andrei Mita
How can I rename the E-mail component? On Wed, Jun 16, 2010 at 3:26 PM, jodator joda...@gmail.com wrote: I had the same issue ;) Fastest: rename model or component. Or you could try use email model in controller like this (I havn't tested it before): $uses = array('MyOtherModel'); ...

Re: Email Component and Model

2010-06-16 Thread Dr. Loboto
Your should rename model. On Jun 16, 7:39 pm, Andrei Mita andrei.m...@gmail.com wrote: How can I rename the E-mail component? On Wed, Jun 16, 2010 at 3:26 PM, jodator joda...@gmail.com wrote: I had the same issue ;) Fastest: rename model or component. Or you could try use email model in

Re: Email Component and Model

2010-06-16 Thread Andrei Mita
Thanks. Will do. On Wed, Jun 16, 2010 at 5:21 PM, Dr. Loboto drlob...@gmail.com wrote: Your should rename model. On Jun 16, 7:39 pm, Andrei Mita andrei.m...@gmail.com wrote: How can I rename the E-mail component? On Wed, Jun 16, 2010 at 3:26 PM, jodator joda...@gmail.com wrote:

Re: Email component

2010-06-16 Thread Daniel
my bad, that's working: $to = 'exampleem...@domain.com'; $this-Email-to = $to; ..typo mistake. but when i include in my controller a config.php file: ?php define('EMAIL', 'exam...@domain.com'); ? and try to use EMAIL to set the destination, it doesn't work :-(. i have tried to set a $email

Re: email component - sending mail via smtp fails on own server!

2010-06-04 Thread Jonathon Musters
...@googlemail.com wrote: i have quite a strange problem with the email component it never failed me before but on the new server i installed an own exim4 mail server with imap/ pop/smtp well, - sending mails wie mail() works, - sending mails via smtp from outside (like thunderbird email program

email component - sending mail via smtp fails on own server!

2010-06-03 Thread euromark
i have quite a strange problem with the email component it never failed me before but on the new server i installed an own exim4 mail server with imap/ pop/smtp well, - sending mails wie mail() works, - sending mails via smtp from outside (like thunderbird email program) works - sending mails wie

Re: email component - sending mail via smtp fails on own server!

2010-06-03 Thread Jonathon Musters
Try a simple test Using php only not cake. Try sending an email If it works cake issue if not server config Let us know Jonathon On 6/3/10, euromark dereurom...@googlemail.com wrote: i have quite a strange problem with the email component it never failed me before but on the new server i

Re: email component - sending mail via smtp fails on own server!

2010-06-03 Thread euromark
Using php only not cake.  Try sending an email If it works cake issue if not server config Let us know Jonathon On 6/3/10, euromark dereurom...@googlemail.com wrote: i have quite a strange problem with the email component it never failed me before but on the new server i installed an own

Re: Shell: Email component breaks HTML template

2010-04-27 Thread nurvzy
How are you calling it in the shell? Keep in mind the Email Component will need access to a controller if you plan on setting variables to give to the view template. Which may be why you're seeing the strange results via shell. Nick On Apr 26, 5:05 am, weckmann bertram.weckm...@docu.ch wrote

Shell: Email component breaks HTML template

2010-04-26 Thread weckmann
Hi, I am using the email component for sending (themed) HTML emails... This works fine as long as I am doing this in normal web application mode. But when I am doing the very same thing inside a Cake Shell task, my template somehow gets messed up. Two problems occur: 1. More than 70

Email Component: I see html email as source code in Squirrel mail web client

2010-04-16 Thread Prof. No Time
When I send Email via the Email Component as Both i.e. html and text. It appears fine in my outlook and also yahoo and I think Gmail too but when I check it in Squirrel Mail webmail interface, it shows the text portion first, then the html source code underneath. This is pretty embarrassing

Re: Email Component: I see html email as source code in Squirrel mail web client

2010-04-16 Thread John Andersen
contains the address of the html version, so that they can see the html version in the browser instead. Should any other have another idea, please enlighten us :) Enjoy, John On Apr 16, 9:26 am, Prof. No Time libertylivingst...@gmail.com wrote: When I send Email via the Email Component as Both

problem with email component

2010-02-19 Thread genellern
Hi. i got a unknown trouble with my app. im trying to set a mail sender but i dont know why it does not send any email, if somebody could help me i'ld really be thankful i put my code below function sendEmail(){ $this-Email-reset();

RE: problem with email component

2010-02-19 Thread Johnathan Iannotti
@googlegroups.com [mailto:cake-...@googlegroups.com] On Behalf Of genellern Sent: Friday, February 19, 2010 1:03 PM To: CakePHP Subject: problem with email component Hi. i got a unknown trouble with my app. im trying to set a mail sender but i dont know why it does not send any email, if somebody

Slow Response when using Email Component

2010-01-14 Thread Jesse
I've been having a little bit of a problem with my app when using the Email component. I have a simple Contact form with around 8-10 fields. When the user submits the form, the data is stored in the database as well as sending out an email to the admin that a submission has been made. For some

Re: Slow Response when using Email Component

2010-01-14 Thread Dr. Loboto
One of possible cases - slow SMTP server. Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups CakePHP group. To post to this group, send email to

Re: How do I use the email component?

2010-01-05 Thread Jeremy Burns
Here you go - this covers the basics. Using the component is actually quite simple: http://www.jeremy-burns.co.uk/2009/12/cakephp-sending-email-using-the-email-component/ On Jan 5, 1:47 am, otisjs01 jerem...@jeremiahotis.com wrote: Hello, I am new to CakePHP and trying desperately to learn

Re: Can't email using the Email Component

2009-09-18 Thread Walther
If you look at the code, you'll notice that it returns exactly the same thing as php mail() will return. On Sep 18, 7:48 am, Bert Van den Brande cyr...@gmail.com wrote: Have you tested the PHP mail() function directly ? The problem with the EmailComponent is that it hides any indicative mail

Re: Can't email using the Email Component

2009-09-18 Thread Bert Van den Brande
What I mean is that the EmailComponent uses @mail() , this suppresses the warnings/errors resulting from that function call. Btw the mail() function only returns a boolean , not a message of any kind. On Fri, Sep 18, 2009 at 11:01 AM, Walther waltherl...@gmail.com wrote: If you look at the

Re: Can't email using the Email Component

2009-09-18 Thread Bert Van den Brande
I use Eclipse PDT combined with XDebug to step through the code that's being executed to detect where the mail sending fails. In this case I would suggest to simple remove the @ in the __mail() function from the Email Component (/cake/libs/controllers/components/email.php) : function __mail

Can't email using the Email Component

2009-09-17 Thread damanlovett
I have read every tutorial and discussion but I can't get the email to send out. Below is an excerpt from my controller. It redirects fine, but I still get Simple email not sent. Is there some setting in the core or somewhere else that I'm missing? var $components = array('Email');

Re: Can't email using the Email Component

2009-09-17 Thread Bert Van den Brande
Have you tested the PHP mail() function directly ? The problem with the EmailComponent is that it hides any indicative mail errors that would help you find the cause for the problem ... I usually debug into the EmailComponents send code ... On Fri, Sep 18, 2009 at 7:00 AM, damanlovett

Re: Anyone get the Email Component to work with gmail smtp.gmail.com?

2009-09-10 Thread bunwich
My solution was to extend the Email component into my own component and add a new delivery type. Someone recommended that if you set $this-delivery to 'mymailer' and create the function __mymailer() the EmailComponent will use this delivery method. I then used a third party library for sending

Re: Anyone get the Email Component to work with gmail smtp.gmail.com?

2009-09-04 Thread LunarDraco
You need to make sure in your php.ini you have uncommented the line extension=php_openssl.dll Also here is a link that have some samples in php and good comments, be sure and read them. Get the simple php test file working first then you should be able to do it.

Re: Anyone get the Email Component to work with gmail smtp.gmail.com?

2009-09-03 Thread Rick
I think the proper port for Gmail is 995. Rick On Sep 2, 8:53 pm, bunwich bunw...@gmail.com wrote: Hi, I changed the port to 465 and tried 'smtp.gmail.com' for the host. Also used the host 'ssl://smtp.gmail.com' The email works fine with sendmail. Anyone know if tsl/ssl is supported?

Anyone get the Email Component to work with gmail smtp.gmail.com?

2009-09-02 Thread bunwich
Hi, I changed the port to 465 and tried 'smtp.gmail.com' for the host. Also used the host 'ssl://smtp.gmail.com' The email works fine with sendmail. Anyone know if tsl/ssl is supported? --~--~-~--~~~---~--~~ You received this message because you are subscribed

multiple $to addresses email component

2009-08-31 Thread Brendon Gleeson
How do I specify multiple $to addresses in the email component? when I specify a comma separated string the mail debug indicates Array instead of a string? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups CakePHP

Re: multiple $to addresses email component

2009-08-31 Thread Aivaras
Ever tried $this-Email-to = 'o...@user.com, t...@user.com';// ? Faifas On Mon, Aug 31, 2009 at 09:56, Brendon Gleeson gleeso...@mobilitas.orgwrote: How do I specify multiple $to addresses in the email component? when I specify a comma separated string the mail debug indicates Array instead

Re: multiple $to addresses email component

2009-08-31 Thread Brendon Gleeson
Gleeson gleeso...@mobilitas.orgwrote: How do I specify multiple $to addresses in the email component? when I specify a comma separated string the mail debug indicates Array instead of a string? --~--~-~--~~~---~--~~ You received this message because you

Email Component Skip Authentification when using SMTP

2009-08-28 Thread Ephigenia
Hi Guys, i just discovered a small bug in the latest cake php email component class when using SMTP delivery and server does not need any authentification to be send. The email component checks the authentification method by sending AUTH LOGIN to the server and checks the response code

Email Component return path

2009-07-28 Thread Obiyoda
I can't seem to get the email component to set a correct return path in the header. I've tried setting $this-Email-return = 'someb...@somewhere.com' yet the email headers are showing the return paths as being www-d...@localhost instead of someb...@somewhere.com. I'm using ubuntu Jaunty

Re: Email Component return path

2009-07-28 Thread tobi_one
Why not use $this-Email-replyTo = 'jdai...@gmail.com'; $this-Email-from = 'Obiyoda jdai...@gmail.com'; instead? Cheers, tobi_one On Jul 28, 4:26 pm, Obiyoda jdai...@gmail.com wrote: I can't seem to get the email component to set a correct return path in the header. I've tried setting

Re: Root Server: email-component fails sometimes, why?

2009-07-16 Thread Travis L
Anything on your system to suggest it's overloaded and the messages are getting silently dropped? If you increase Cake's debug level you should see some output which could help you out, it'll give you a full stack trace I believe. On Jul 15, 1:17 pm, DigitalDude e.blumsten...@googlemail.com

Root Server: email-component fails sometimes, why?

2009-07-15 Thread DigitalDude
Hey, the App on my root-server sometimes does not send emails, even if the recipients are the same. So when I use a testfunction which sends the exact same email to the same address let's say 5 times, there are only 3 or 4 mails delivered and the other(s) are not! How can this happen?

Re: Root Server: email-component fails sometimes, why?

2009-07-15 Thread GravyFace
Anything in your sendmail/qmail/postfix queue? logs? On Wed, Jul 15, 2009 at 4:01 PM, DigitalDudee.blumsten...@googlemail.com wrote: Hey, the App on my root-server sometimes does not send emails, even if the recipients are the same. So when I use a testfunction which sends the exact same

Re: Root Server: email-component fails sometimes, why?

2009-07-15 Thread DigitalDude
Hey, yes, all emails that are not being delivered are not listet in the logs of my email server. It looks like the send() command never gets executed, the email is never passed into the mail-queue on the server. The weirdest thing of all is, that on another server, every email gets send without

  1   2   3   4   >