Irene Posted March 8, 2008 Share Posted March 8, 2008 When a customer orders a new domain I receive an email with the registration info, when a customer orders to transfer a domain I receive a blank email. Anyone who has the same problem? Link to comment Share on other sites More sharing options...
dexus Posted March 13, 2008 Share Posted March 13, 2008 Yes, two rows are missing in file... \modules\registrars\email\email.php Just find those two lines... function email_TransferDomain($params) { global $CONFIG; ...and add this after those two lines... $command = "Transfer Domain ".$params["sld"].".".$params["tld"]; $message = "Domain: ".$params["sld"].".".$params["tld"]."<br>Transfer Secret Key: ".$params["transfersecret"]."<br><br>Nameserver 1: ".$params["ns1"]."<br>Nameserver 2: ".$params["ns2"]."<br>Nameserver 3: ".$params["ns3"]."<br>Nameserver 4: ".$params["ns4"]."<br><br>RegistrantFirstName: ".$params["firstname"]."<br>RegistrantLastName: ".$params["lastname"]."<br>RegistrantOrganizationName: ".$params["companyname"]."<br>RegistrantAddress1: ".$params["address1"]."<br>RegistrantAddress2: ".$params["address2"]."<br>RegistrantCity: ".$params["city"]."<br>RegistrantStateProvince: ".$params["state"]."<br>RegistrantCountry: ".$params["country"]."<br>RegistrantPostalCode: ".$params["postcode"]."<br>RegistrantPhone: ".$params["phonenumber"]."<br>RegistrantEmailAddress: ".$params["email"]."<br>"; Link to comment Share on other sites More sharing options...
Irene Posted March 15, 2008 Author Share Posted March 15, 2008 yes that looks different from what was in the file and looks more like the registration section I've changed it, not tested it yet but I will Thanks Dexus! Link to comment Share on other sites More sharing options...
Recommended Posts