Yup agreed, sorry normally would but I was in a rush.
the way to do it was in the mail/ folder open up subscribe.php and look for the line that starts:
# Send mail notification to admin
#
func_send_mail($config["Company"]["newsletter_email"], "mail/newsletter_admin_subj.tpl", "mail/newsletter_admin.tpl", $email, true);
comment out the func_send by placing a # in front of it and then do the same with unsubscribe.php so it look like this:
#func_send_mail($config["Company"]["newsletter_email"], "mail/newsletter_admin_subj.tpl", "mail/newsletter_admin.tpl", $email, true);
that was it, this is using 3.3.3 so I don't know if it the same for other versions (can someone confirm that it is?)
|