Hello Everyone at the VH forum,
When I use this mail function:
to send automatic emails on my php program, people are receiving emails saying:
*****@voda26.voda26.com in name of LUSOPIPE [lusopipe@crmpt.com]
***** is my control panel username.
www.crmpt.com is my domain name (one of).
How can I avoid the:
*****@voda26.voda26.com in name of....
Thanks in advance,
pipesportugal
When I use this mail function:
PHP Code:
$my_email = 'LUSOPIPE <lusopipe@crmpt.com>';
$extra = "From: $meu_email\r\n";
$recipient = "$email_tosendto";
include("include/subject_and_message.php");
mail ($recipient, $subject, $message, $extra);
*****@voda26.voda26.com in name of LUSOPIPE [lusopipe@crmpt.com]
***** is my control panel username.
www.crmpt.com is my domain name (one of).
How can I avoid the:
*****@voda26.voda26.com in name of....
Thanks in advance,
pipesportugal
Comment