$fp = fopen("msg1.dat", "r"); while (!feof($fp)) { $data = fgetcsv ($fp, 4096, ":"); $subiect_email="Important to all my users!!!"; $design="<html> <head> <title>blaaaaa</title> </head> <body><br>bla....blaaa"; @mail ($data[4],$subiect_email, $design, "From: [EMAIL PROTECTED]\n"); } fclose ($fp);