Hi everyone,
im new in PHP and i have some issue here. i try to send an email with download link below is my code:
$adminmail="xxx@abc.com.my";
$adminmail2="zzz@abc.com.my";
$headers="From:abc@abc.com\n";
$headers.="Cc:abcd@abc.com\r\n";
$subject="new download\n\n ";
$message.="Name:new download\n";
$message.="Attachement: http://www.abc.com.my/file/upload/$new_file_name\n";
based on above code, i will get an email as below:
Name:new download
Attachment: http://www.abc.com.my/file/upload/newfilename
and i can download the file with the link. but what i wanna do is i want the link is hidden as below:
Name:new download
Attachment: download here
please advice and thanks

