<? /* sendmail.php3 This was developed by Alexander Rafael Benatti 03/2000, UIN - 59862221 */ $mailheaders = \"From: $from\\n\"; $mailheaders .= \"Reply-To: $from\\n\"; $mailheaders .= \"Cc: $cc\\n\"; $mailheaders .= \"Bcc: $bcc\\n\"; $mailheaders .= \"X-Mailer: Script para enviar arquivo atachado, desenvolvido por Alexander Benatti\\n\"; $msg_body = stripslashes($body); if ($attach != \"none\") { $file = fopen($attach, \"r\"); $contents = fread($file, $attach_size); $encoded_attach = chunk_split(base64_encode($contents)); fclose($file); $mailheaders .= \"MIME-version: 1.0\\n\"; $mailheaders .= \"Content-type: multipart/mixed; \"; $mailheaders .= \"boundary=\\\"Message-Boundary\\\"\\n\"; $mailheaders .= \"Content-transfer-encoding: 7BIT\\n\"; $mailheaders .= \"X-attachments: $attach_name\"; $body_top = \"--Message-Boundary\\n\"; $body_top .= \"Content-type: text/plain; charset=US-ASCII\\n\"; $body_top .= \"Content-transfer-encoding: 7BIT\\n\"; $body_top .= \"Content-description: Mail message body\\n\\n\"; $msg_body = $body_top . $msg_body; $msg_body .= \"\\n\\n--Message-Boundary\\n\"; $msg_body .= \"Content-type: $attach_type; name=\\\"$attach_name\\\"\\n\"; $msg_body .= \"Content-Transfer-Encoding: BASE64\\n\"; $msg_body .= \"Content-disposition: attachment; filename=\\\"$attach_name\\\"\\n\\n\"; $msg_body .= \"$encoded_attach\\n\"; $msg_body .= \"--Message-Boundary--\\n\"; } mail($to, stripslashes($subject), $msg_body, $mailheaders); ?>