Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Send Email with attachment

Status
Not open for further replies.

Nebooaw

Programmer
Jun 1, 2001
142
0
0
GB
Hi, does anyone know how to build a txt file attachment in php, insert some text and include it in an email?
 
look at phpmailer on sourceforge (and several posts here)
 
Have had a look around - still a little confused. I can create and send emails ok but im not sure how to create a text file with some information inside and include it on the email. Can anyone provide an example for me to play with?

Kindest thanks.
 
look at the file handling functions in the manual. They have names like fopen(), fwrite(), fclose() etc
 
Did you have a look in the FAQ in here? I found this:

faq434-1203

Maybe this could help you.


Jakob
 
Hi, being playing with this, think i can figure the rest out...

$file = fopen("download.tsx","w");
fwrite($file,"blar blar blar");
fclose($file);


Kindest Thanks - everyone for your suggestions.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top