Hello, Does anyone know any good email list / newsletter scripts which can do the following: - Send HTML / plain text emails. - Use a html sign up form - Allows importing of emails I prefer it being free. Thanks.
well if you are experienced in php you can do that your self. for creating html mails use headers as $headers = "MIME-Version: 1.0\r\n"; $headers .= 'From: ' . "\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; $message=file_get_contents('thehtmlfilepath'); then use mail function mail ( $to , $subject , $message , string $additional_headers , string $additional_parameters ); for guide on creating the html for sending as newsletter refer http://www.knowledge-transfers.com/it/how-to-write-a-html-newsletter