touch 0 Denunciar post Postado Abril 19, 2003 Alguem tem o codigo ou sabe onde posso encontar um formmail que envie um anexo de img...?Presiso muito disso...Se puderem me ajudar eu agradeço..... Compartilhar este post Link para o post Compartilhar em outros sites
dfcabello 0 Denunciar post Postado Abril 19, 2003 pow procura no www.phpbrasil.com :) Compartilhar este post Link para o post Compartilhar em outros sites
touch 0 Denunciar post Postado Abril 19, 2003 ja procurei, so encontrei de unload de imagens, o que quero é um formmail que envie um anexo tambem... Compartilhar este post Link para o post Compartilhar em outros sites
dfcabello 0 Denunciar post Postado Abril 19, 2003 um desculpa não tinha entendido o que você queria, está ai na phpbrasil.com http://phpbrasil.com/faqs/faq.php/id/155 se não tiver funcionando na hora que você acessar, pq o phpbrasil tem estado muito instavel, vai ai o código do cara: <? $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\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); ?> Compartilhar este post Link para o post Compartilhar em outros sites