How to embed images in email using cakePHP (not just attach it to the message)

One of our cakePHP applications needs to send a cute email to the users. CakePHP allows to attach content to the emails, but it will arrive as an attachment, so in order to show the image as part of the messaje, not just as an attachment, I needed to make a few changes to cakePHP. …

CakePHP Helper – the fetcher, what we all need, as simple as it is

Sometimes you encounter a place where in a view you need to intiate a model and fetch some information, requestAction is not recommened and currently CakePHP provide a simple way to fetch a model data.

so how can it be done, easily we had made the Fetcher helper that can help you get link, news, users …