Leonardo
Leonardo

Reputation: 2363

How to use just a class library of ZEND FRAMEWORK?

i just want to use MAIL class of ZEND FRAMEWORK

What file i have to include in my script?

thank you

Upvotes: 2

Views: 545

Answers (1)

Mads Mogenshøj
Mads Mogenshøj

Reputation: 2068

include '/path/to/Zend/lib/Zend/Mail.php'
$zendMail = new Zend_Mail();

Upvotes: 7

Related Questions