I would like to make a email sending script. But i want them to either enter the email manually or browse their pc for a notepad file(.txt) In this format Email addresss Email addresss Email addresss Email addresss Email addresss and so on.
Your post is not clear enough. Do you want to make this script by your own or need someone to create it for you?
you can check out this post here :- http://www.digitalwebtalk.com/tutorials/php-tutorials/make-your-own-phpmailer.html this is exactly what you need.
$var=file_get_contents("LINKTOYOURFILE.TXT"); $var=explode("\n", $var); foreach ($var as $line=>$data) { // DO THE MAIL FUNCTION HERE }