How can I make email template in Zend Framework?
Posted
by Billy
on Stack Overflow
See other posts from Stack Overflow
or by Billy
Published on 2009-08-02T04:51:55Z
Indexed on
2010/05/06
2:38 UTC
Read the original article
Hit count: 244
zend-framework
I want to make email templates in Zend Framework.
For example,
<html>
<body>
Dear {$username$}, <br>
This is a invitation email sent by your {$friend$}.<br>
Regards,<br>
Admin
</body>
</html>
I want to make this file, get it in Zend framework, set those parameters (username, friend) and then send the email.
How can I do that? Does Zend support this?
© Stack Overflow or respective owner