[symfony-users] Re: Swift mail in Symfony 1.3

2009-10-22 Thread Alexandru-Emil Lupu
On Thu, Oct 22, 2009 at 2:38 PM, Alexandru-Emil Lupu wrote: > > > On Thu, Oct 22, 2009 at 12:35 PM, Alexandru-Emil Lupu < > gang.al...@gmail.com> wrote: > >> Hi there! >> >> I have a problem with my mailer system on sf 1.3. i do get this error: >> >> Catchable fatal error: Argument 1 passed to >>

[symfony-users] Re: Swift mail in Symfony 1.3

2009-10-22 Thread Alexandru-Emil Lupu
On Thu, Oct 22, 2009 at 12:35 PM, Alexandru-Emil Lupu wrote: > Hi there! > > I have a problem with my mailer system on sf 1.3. i do get this error: > > Catchable fatal error: Argument 1 passed to > Swift_Transport_SpoolTransport::registerPlugin() must be an instance of > Swift_Events_EventListener

[symfony-users] Re: Swift Mail 4.0.4

2009-09-25 Thread DEEPAK BHATIA
Thanks, I could resolve that. Yes we have to include swift_init.php. On Sat, Sep 26, 2009 at 12:20 AM, Casey wrote: > > In the latest version of swift there is a file called init_swift.php > or something that will not be autoloaded so you have to use require. > That could be part of the problem.

[symfony-users] Re: Swift Mail 4.0.4

2009-09-25 Thread Casey
In the latest version of swift there is a file called init_swift.php or something that will not be autoloaded so you have to use require. That could be part of the problem. On Sep 25, 6:27 am, DEEPAK BHATIA wrote: > Sorry, I have both old version of swift mail and new version of swift mail > ins

[symfony-users] Re: Swift Mail 4.0.4

2009-09-25 Thread DEEPAK BHATIA
Sorry, I have both old version of swift mail and new version of swift mail installed. I think this is causing some confusion. On Fri, Sep 25, 2009 at 6:36 PM, DEEPAK BHATIA wrote: > Hi, > > I have installed the swift mail in the directory > > /opt/lampp/htdocs/crb/lib/vendor > > I have done php s

[symfony-users] Re: Swift Mail

2009-08-14 Thread DEEPAK BHATIA
Ok.Thanks On Fri, Aug 14, 2009 at 1:46 PM, Mr_chon wrote: > > > > On 13 août, 20:24, DEEPAK BHATIA wrote: >> Yes, I know HTML very well but still need a good hand on it. >> >> On Thu, Aug 13, 2009 at 11:53 PM, Eno wrote: >> >> > On Thu, 13 Aug 2009, DEEPAK BHATIA wrote: >> >> >> I tried

[symfony-users] Re: Swift Mail

2009-08-14 Thread Mr_chon
On 13 août, 20:24, DEEPAK BHATIA wrote: > Yes, I know HTML very well but still need a good hand on it. > > On Thu, Aug 13, 2009 at 11:53 PM, Eno wrote: > > > On Thu, 13 Aug 2009, DEEPAK BHATIA wrote: > > >> I tried this and nto working > > >> $textbody = "Text to appear as hyperlink"; > > >> Bu

[symfony-users] Re: Swift Mail

2009-08-13 Thread Eno
On Thu, 13 Aug 2009, DEEPAK BHATIA wrote: > > Yes, I know HTML very well but still need a good hand on it. > > On Thu, Aug 13, 2009 at 11:53 PM, Eno wrote: > > > > On Thu, 13 Aug 2009, DEEPAK BHATIA wrote: > > > >> I tried this and nto working > >> > >> $textbody = "Text to appear as hyperlink"

[symfony-users] Re: Swift Mail

2009-08-13 Thread DEEPAK BHATIA
Yes, I know HTML very well but still need a good hand on it. On Thu, Aug 13, 2009 at 11:53 PM, Eno wrote: > > On Thu, 13 Aug 2009, DEEPAK BHATIA wrote: > >> I tried this and nto working >> >> $textbody = "Text to appear as hyperlink"; >> >> But I am not getting the hyperlink. > > > Perhaps learni

[symfony-users] Re: Swift Mail

2009-08-13 Thread Eno
On Thu, 13 Aug 2009, DEEPAK BHATIA wrote: > I tried this and nto working > > $textbody = "Text to appear as hyperlink"; > > But I am not getting the hyperlink. Perhaps learning HTML might be a good idea? -- --~--~-~--~~~---~--~~ You received this message

[symfony-users] Re: Swift Mail

2009-08-13 Thread DEEPAK BHATIA
Thanks.. On Thu, Aug 13, 2009 at 11:40 PM, Tom Haskins-Vaughan wrote: > > Surely you need to add the href? > > $textbody = "http://example.com";>Text to appear as hyperlink"; > > DEEPAK BHATIA wrote: >> I tried this and nto working >> >> $textbody = "Text to appear as hyperlink"; >> >> Bu

[symfony-users] Re: Swift Mail

2009-08-13 Thread Tom Haskins-Vaughan
Surely you need to add the href? $textbody = "http://example.com";>Text to appear as hyperlink"; DEEPAK BHATIA wrote: > I tried this and nto working > > $textbody = "Text to appear as hyperlink"; > > But I am not getting the hyperlink. > > Regards > > Deepak Bhatia > > On Thu, Aug 13, 2009

[symfony-users] Re: Swift Mail

2009-08-13 Thread DEEPAK BHATIA
I tried this and nto working $textbody = "Text to appear as hyperlink"; But I am not getting the hyperlink. Regards Deepak Bhatia On Thu, Aug 13, 2009 at 6:52 PM, Donald Tyler wrote: > > You have two opening "b" tags in your body. The second one should be . > > > > --~--~-~--~~--

[symfony-users] Re: Swift Mail

2009-08-13 Thread DEEPAK BHATIA
Thanks.. On Thu, Aug 13, 2009 at 6:52 PM, Donald Tyler wrote: > > You have two opening "b" tags in your body. The second one should be . > > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony u

[symfony-users] Re: Swift Mail

2009-08-13 Thread Donald Tyler
You have two opening "b" tags in your body. The second one should be . --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-users@googlegroups.com To uns

[symfony-users] Re: Swift Mail

2009-08-13 Thread Mr_chon
Hi, Not sure this has its place in a symfony group... Anyways, if you're using Swift v3, the way I've made that work was : $message = new Swift_Message('your subject'); $message->attach(new Swift_Message_part($mailBody, 'text/html')); then you can send it... On 13 août, 12:50, DEEPAK BHATIA