Welcome Guest, Not a member yet? Register   Sign In
Email class: add attachment from string
#2

[eluser]Colin Williams[/eluser]
It has to be a file for sendmail or whichever email program on your server to actually attach it. Perhaps the email class could handle the file creation, but IDK, how hard is it to really do it yourself?

Code:
$csv_data = "Paul,Peter,Jacob\nJohn,Paul,Rogers";
$filename = 'path/to/new/file.csv';
if(file_put_contents($filename, $csv_data))
{
   $this->email->attach($filename);
}


Messages In This Thread
Email class: add attachment from string - by El Forum - 08-31-2008, 01:26 AM
Email class: add attachment from string - by El Forum - 08-31-2008, 03:04 AM
Email class: add attachment from string - by El Forum - 08-31-2008, 03:34 AM
Email class: add attachment from string - by El Forum - 08-31-2008, 05:18 AM
Email class: add attachment from string - by El Forum - 08-31-2008, 04:06 PM
Email class: add attachment from string - by El Forum - 08-31-2008, 04:29 PM
Email class: add attachment from string - by El Forum - 08-31-2008, 04:38 PM
Email class: add attachment from string - by El Forum - 09-01-2008, 11:25 AM



Theme © iAndrew 2016 - Forum software by © MyBB