on the admin_pm/users_registration.php, you could change the following code block:
<?php
if ((($_SERVER["REQUEST_METHOD"] == "POST") && (isset($_SERVER["HTTP_REFERER"]) && strpos(urldecode($_SERVER["HTTP_REFERER"]), urldecode($_SERVER["SERVER_NAME"].$_SERVER["PHP_SELF"])) > 0) && isset($_POST))) {
//WA Universal Email object="mail"
//Send Loop Once Per Entry
$RecipientEmail = "".((isset($_POST["UserEmail"]))?$_POST["UserEmail"]:"") ."";include("../webassist/email/WAUE_users_Registration_1.php");
//Send Mail All Entries
if ("users_detail.php?UserID=".(mysql_insert_id()) .""!="") {
header("Location: users_detail.php?UserID=".(mysql_insert_id()) ."");
}
}
?>
to:
<?php
if ("" != "") {
//WA Universal Email object="mail"
//Send Loop Once Per Entry
$RecipientEmail = "".((isset($_POST["UserEmail"]))?$_POST["UserEmail"]:"") ."";include("../webassist/email/WAUE_users_Registration_1.php");
//Send Mail All Entries
if ("users_detail.php?UserID=".(mysql_insert_id()) .""!="") {
header("Location: users_detail.php?UserID=".(mysql_insert_id()) ."");
}
}
?>
in order to prevent the registration email from being sent.