Re: [PHP] Using a class inside of a class

2008-12-12 Thread Nathan Rixham
Robert Cummings wrote: On Fri, 2008-12-12 at 13:21 -0800, Richard Kurth wrote: Can I use another class inside of a function in a class this function process_queue below is inside of a class called class mailer I want to use the phpMailer class inside of this function so I can send email using

Re: [PHP] Using a class inside of a class

2008-12-12 Thread Robert Cummings
On Fri, 2008-12-12 at 13:21 -0800, Richard Kurth wrote: > Can I use another class inside of a function in a class > > > this function process_queue below is inside of a class called class mailer > I want to use the phpMailer class inside of this function so I can send > email using smtp. > Can t

[PHP] Using a class inside of a class

2008-12-12 Thread Richard Kurth
Can I use another class inside of a function in a class this function process_queue below is inside of a class called class mailer I want to use the phpMailer class inside of this function so I can send email using smtp. Can this be done and is there any information out there on how to do this