Hello!
In a mail() function(I am pretty used to use the mail function since before) I do have
$randysmail = "rshaw@domainname.us";
$message2 .= "CPY_TO_______: $randysmail\n";
$headers2 .= "Cc: ".$randysmail."\r\n";
But for some reson in the mail, the mail address is cut to "@domainname.us"(rshaw is cut out)
(This I know because the main address got the mail and there I see this error)
Really happy for help.
All code here:
All code(domainname replaced with "domainname"):
//Here a mail is sent
$address2 = "info@domainname.us";
$subject2 = "New download";
$message2 = "MODELL_______: $model\n";
$message2 .= "PROZESSOR____: $processor\n";
$headers2 = "From: the webpage <>\r\n";
$randysmail = "rshaw@domainname.us";
$message2 .= "CPY_TO_______: $randysmail\n";
$headers2 .= "Cc: ".$randysmail."\r\n";
mail($address2, $subject2, $message2, $headers2);