Love Fuel?
Donate
About
Forums
Discussions
Login
FuelPHP Forums
Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
General
EMAIL - Email attachment not found: title.png
chavewain
January 2015
am having this error ?
Email attachment not found: title.png
$email = Email::forge();
$email->from('noreply@projecttic.com', 'www.ProjectTic.com');
$email->to($val->validated('email'));
//$email->html_body('Tu password es
'.$rand.'
');
$email->html_body(\View::forge('email/new_registration', $email_data));
$email->alt_body('This is my alt body, for non-html viewers.');
$email->subject('ABC PROJECT - Nueva Cuenta');
$email->priority(\Email::P_HIGH);
$result = $email->send();
Harro
January 2015
There are probably images in your HTML.
When you send that as an email, the images have to be removed from it, attached to the email, and the links to them replaced by cid links to the attached images.
Check your html, and make sure all assets exist and can be loaded.
chavewain
January 2015
I think is the path, if the path isn't absolute cause this error
I changed it to absolute and the error is solved
Add a Comment
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
5,088
General
↳ General
3,364
↳ Job Board
13
↳ Installation & Setup
214
Packages
↳ Oil
213
↳ Orm
700
↳ Auth
260
Development
↳ Tips and Tutorials
126
↳ Code share
145
↳ Applications
52
In this Discussion
chavewain
January 2015
Harro
January 2015