Hi I run an internal site site to organise our company events. I want a user to be able to send an email using php. The script is obviously on my server. When the user has has completed the email I want to pick up the email signature (HTML file) from the users own pc on a c drive and then include it in the mail program on my server . I have included a short bit of the code. I don't expect anybody to write code for me but can somebody help me get the right path to the users C drive. Thanks in advance
$msg = "<h3>Test Email signature</h3> " ;
$msg .= file_get_contents('C/Intranet/signatures/sig1.htm');
$email = new emailer;
$email->subject = $type ;
$email->body = $msg ;
$email->from = "[email protected]" ;
$email->to = "[email protected]" ;
$email->sendmail() ; enter code here