how to send mail in cake php using phpmailer libraray

2016-01-29 Thread Jagdish singh bisht
hi, just want to know how to send email using phpmailer library in cakephp 3.0.15 -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because you are subscribed to the Google Groups "CakePHP"

Re: Cake mail vs PHPMailer

2011-04-27 Thread cricket
On Wed, Apr 27, 2011 at 6:56 AM, Jeremy Burns | Class Outfit wrote: > Same question applies then; what are the pros and cons of using Cake's own > email component versus an external package? An external package may have features that Cake's component doesn't have. Swift, for example, has bulk sen

Re: Cake mail vs PHPMailer

2011-04-27 Thread Jeremy Burns | Class Outfit
t mailer ? > > > > On Wed, Apr 27, 2011 at 1:03 PM, Jeremy Burns > wrote: > A generic question really. I've seen a few articles that recommend > using PHPMailer for generating emails in preference to the Cake email > component, especially for bulk emails. Is there any substance

Re: Cake mail vs PHPMailer

2011-04-27 Thread Phang Mulianto
do you had tried swift mailer ? On Wed, Apr 27, 2011 at 1:03 PM, Jeremy Burns wrote: > A generic question really. I've seen a few articles that recommend > using PHPMailer for generating emails in preference to the Cake email > component, especially for bulk emails. Is there an

Cake mail vs PHPMailer

2011-04-26 Thread Jeremy Burns
A generic question really. I've seen a few articles that recommend using PHPMailer for generating emails in preference to the Cake email component, especially for bulk emails. Is there any substance to this suggestion? What might the advantages be? -- Our newest site for the community: Ca

regarding using phpmailer for sending emails

2009-09-07 Thread ruchika batra
i am getting the following error while using phpmailer Call to undefined function _errormsg() in *phpmailer\class.phpmailer.php.**Can anyone suggest what the prob cud be?* --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: App::import() failure for PHPMailer (w/ Cake 1.2)

2009-03-26 Thread brian
try this App::import('vendor', 'PHPMailer', array('file' => 'phpMailer/class.phpmailer.php')); On Wed, Mar 25, 2009 at 6:54 PM, captain_geek wrote: > > I was following an older post about integrating PHPMailer into CakePHP > and the first po

App::import() failure for PHPMailer (w/ Cake 1.2)

2009-03-26 Thread captain_geek
I was following an older post about integrating PHPMailer into CakePHP and the first porting problem I ran into was that the component used vendor() instead of the new 1.2 format ... But then when I changed the line to: App::import('Vendor','phpmailer'.DS.'cl

Send text/plain email using PHPMailer

2008-07-17 Thread Pierre MARCOURT
Hi, I try to send an text/plain email via PHPMailer but it continues to send it in HTML. I tried this : $this->Email->sendAs = 'text'; $this->Email->subject = "test"; $this->Email->to = "[EMAIL PROT

Re: Bug while using PHPmailer

2008-02-13 Thread djiize
gt; djiize wrote: > > > > in your email.php component file, check if there's nothing after > > > closing tag (?>) > > > and FYI, there's an Email core component in Cake > > > > On 13 fév, 11:04, searchmax <[EMAIL PROTECTED]> wrote: > >

Re: Bug while using PHPmailer

2008-02-13 Thread djiize
11:04, searchmax <[EMAIL PROTECTED]> wrote: > >> My code was working fine with sessions but when i added the > >> email(phpmailer), > >> I am getting the below error when i use email(phpmailer) component and > >> checking the session > > >> If

Re: Bug while using PHPmailer

2008-02-13 Thread searchmax
ter > closing tag (?>) > and FYI, there's an Email core component in Cake > > On 13 f�v, 11:04, searchmax <[EMAIL PROTECTED]> wrote: >> My code was working fine with sessions but when i added the >> email(phpmailer), >> I am getting the below error when

Re: Bug while using PHPmailer

2008-02-13 Thread searchmax
Thankyou very much for showing interest in my query. I have checked the file email.php and after ?> closing tag nothing is there. I have searched in cake for email component and what i got is the phpmailer thing and i have proceeded with that. Can you please send me some links to any examp

Re: Bug while using PHPmailer

2008-02-13 Thread djiize
in your email.php component file, check if there's nothing after closing tag (?>) and FYI, there's an Email core component in Cake On 13 fév, 11:04, searchmax <[EMAIL PROTECTED]> wrote: > My code was working fine with sessions but when i added the email(phpmailer), > I a

Bug while using PHPmailer

2008-02-13 Thread searchmax
My code was working fine with sessions but when i added the email(phpmailer), I am getting the below error when i use email(phpmailer) component and checking the session If i comment var $components = array('Email');, everything works fine. Pls help me in this regard CODE ch

Re: Trying to use PHPMailer

2007-12-23 Thread subtropolis zijn
On Dec 23, 2007 3:45 AM, skoggins <[EMAIL PROTECTED]> wrote: > > Hi All, > > I am trying to use PHPMailer according to the tutorial here: > > http://bakery.cakephp.org/articles/view/phpmailer-with-native-api-for-php-5-x > but keep getting errors. > > The e

Trying to use PHPMailer

2007-12-23 Thread skoggins
Hi All, I am trying to use PHPMailer according to the tutorial here: http://bakery.cakephp.org/articles/view/phpmailer-with-native-api-for-php-5-x but keep getting errors. The error I get on my local machine is: "There was a problem sending mail: Language string failed to load: instan

Re: Captcha does not work when combined with phpmailer component

2007-12-19 Thread Martijn Hodenpijl
The captcha component still functions, an image is generated, but somehow the browser does not display the image if the phpmailer component is invoked as well. Is this a session problem ? Does anyone have a clue about how to deal with problem? On Dec 18, 11:35 am, Martijn Hodenpijl <[EM

Captcha does not work when combined with phpmailer component

2007-12-18 Thread Martijn Hodenpijl
Hello, I use the cakePHP version 1.1.17.5612. I making a comments form. for thise form I use 2 components, the phpmailer and phpcaptcha. I follow the tutorials for the captcha and comments from http://bakery.cakephp.org/ If they are both declared in my controller, the captcha form does not

Re: Phpmailer compoent error

2007-10-12 Thread Chris
Hi Danielle, On Oct 12, 5:34 pm, Danielle Tilley <[EMAIL PROTECTED]> wrote: > Have you told the the UsersController to use the email component? > > var $components= array('Email'); I was about to say "off course I have", but I'd declared var $components= array('email'); instead, (no capital E

Re: Phpmailer compoent error

2007-10-12 Thread Danielle Tilley
Have you told the the UsersController to use the email component? var $components= array('Email'); Chris wrote: > Hi Guys > > I've been trying to use the PHPMailer Compoent as described in > http://bakery.cakephp.org/articles/view/sending-email-with-phpmailer > &

Phpmailer compoent error

2007-10-12 Thread Chris
Hi Guys I've been trying to use the PHPMailer Compoent as described in http://bakery.cakephp.org/articles/view/sending-email-with-phpmailer But I get the following error.. Fatal error: Call to undefined method stdClass::send() in F:\xampplite \htdocs\cake\app\controllers\users_controlle

Re: PHPmailer

2007-03-27 Thread Enchy
yourself with this sort of thing. I promise it will make your life a > lot easier when you attempt to develop programs in CakePHP. > > On 3/26/07, Daniel Pape <[EMAIL PROTECTED]> wrote: > > > > > Is $this->Mailer an instance of class.phpmailer?? > > > 2

Re: PHPmailer

2007-03-26 Thread Brian Dailey
ler?? > > > > 2007/3/26, Enchy <[EMAIL PROTECTED]>: > > > > Hi > > > > I installed phpmailer > > > > Calling it like the tutorial says: > > vendor('phpmailer/class.phpmailer'); > > > > And then error: > > Call

Re: PHPmailer

2007-03-26 Thread Daniel Pape
Is $this->Mailer an instance of class.phpmailer?? 2007/3/26, Enchy <[EMAIL PROTECTED]>: > > > Hi > > I installed phpmailer > > Calling it like the tutorial says: > vendor('phpmailer/class.phpmailer'); > > And then error: > Call to undefined

PHPmailer

2007-03-26 Thread Enchy
Hi I installed phpmailer Calling it like the tutorial says: vendor('phpmailer/class.phpmailer'); And then error: Call to undefined function: addaddress() in /usr/www/users/struts/cake/ app/controllers/hunters_controller.php on line 37 line 37: $this->Mailer->AddAddress(&

Re: How Can I make my phpmailer component in bakery works?

2006-11-27 Thread ERic ZoU
Thanks. There is A *SPACE* after the ?>. IT works! BUT, someone help me about the content inside. I sent the e-mail sucessful. BUT, it contains nothing. It should be the pro. about the template. I add some testing info. in the email_body_html.thtml and the email_body_plain.thtml BUT there is no

Re: How Can I make my phpmailer component in bakery works?

2006-11-27 Thread Grant Cox
Make sure you don't have any whitespace (ie a new line) after the closing php tag, in the components/email.php file. I'm not sure why it would say the message has been sent, I haven't used that component. --~--~-~--~~~---~--~~ You received this message because y

Re: Integration with phpMailer?

2006-10-18 Thread xhenxhe
y the old wiki > > http://wiki.cakephp.org/tutorials:sending_email_with_phpmailer?s=phpm... > > HTH > freedom > > On 19/10/06, xhenxhe <[EMAIL PROTECTED]> wrote: > > > > > I'm really new to Cake. I use phpMailer for sending mail. I was > > wondering if it has

Re: Integration with phpMailer?

2006-10-18 Thread Mikee Freedom
morning mate, best place to look these days is the bakery: http://bakery.cakephp.org/articles/view/94 or if you can't find it there try the old wiki http://wiki.cakephp.org/tutorials:sending_email_with_phpmailer?s=phpmailer HTH freedom On 19/10/06, xhenxhe <[EMAIL PROTECTED]> wro

Integration with phpMailer?

2006-10-18 Thread xhenxhe
I'm really new to Cake. I use phpMailer for sending mail. I was wondering if it has been integrated into cake in anyway, or how I would go about integrating it? Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G