Last active
August 29, 2015 14:07
-
-
Save taleeb35/144fac64a80f9ae0e992 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Email = new CakeEmail('default'); // Php file | |
$Email->template('default', 'default') | |
->to($user_email) | |
->attachments(array( | |
'photo.png' => array( | |
'file' => 'http://135smart.com/wp-content/uploads/2014/08/logo.png', | |
'mimetype' => 'image/png', | |
'contentId' => 'cid:b7f792ab-98b1-435c-bbdb-14610be008c9' | |
) | |
)) | |
->subject('Your Daily Tasks') | |
->send($email_body); | |
} | |
<img src="cid:b7f792ab-98b1-435c-bbdb-14610be008c9"> // layout File |
InternetLogic
commented
Oct 15, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment