Jump to content

vani sri

Members
  • Posts

    35
  • Joined

  • Last visited

    Never

Everything posted by vani sri

  1. Hi, Thanks for ur help. I got the answer by using CAPTCHA method. Thanks & regards, vani
  2. Thank for ur reply. I didn't use this method. I will try this. Thanks & regards, vani
  3. Hi all, i am using one feedback form. If i post the feed back i view that feed back in admin side. Problem: Some spam messages also inserted. for eg:withdrawal_xanax : withdrawal_xanax - withdrawal xanax side_effects_of_xanax : side_effects_of_xanax - side effects of xanax This msgs are automated. Daily 3 or 4 messages are inserted. How it's happen? ??? What is the solution? ??? Regards, vani
  4. If Neglecting the mime boundary There is no attachment & no text msg...
  5. $headers .= "\nMIME-Version: 1.0\n" . "Content-Type: multipart/mixed; charset=iso-8859-1;\n" . " boundary=\"{$mime_boundary}\""; If use the coding like this.It's work in both gmail & yahoo... But i want to include both the attachment and HTML format..
  6. I got the mail in inbox with out any messages and attachments
  7. For the attachment purpose i use the headers.If i remove then there is no attachment..
  8. Hi, I have the doubt in mail function in php..... I included both html format and file attachment in mail function.It's work in gmail but not work in yahoo... My codings, $semi_rand = md5(time()); $mime_boundary = "==Multipart_Boundary_x{$semi_rand}x"; $headers .= "\nMIME-Version: 1.0\n" . "Content-Type: multipart/mixed/text/html; charset=iso-8859-1;\n" . " boundary=\"{$mime_boundary}\""; $email_message.="Dear ". $name.",<br>". $comment; $email_message .= "This is a multi-part message in MIME format.\n\n" . "--{$mime_boundary}\n" . "Content-Type:text/html; charset=\"iso-8859-1\"\n" . "Content-Transfer-Encoding: 7bit\n\n" . $email_message . "\n\n"; $data = chunk_split(base64_encode($data)); $email_message .= "--{$mime_boundary}\n" . "Content-Type: {$fileatt_type};\n" . " name=\"{$fileatt_name}\"\n" . //"Content-Disposition: attachment;\n" . //" filename=\"{$fileatt_name}\"\n" . "Content-Transfer-Encoding: base64\n\n" . $data . "\n\n" . "--{$mime_boundary}--\n"; Pls any one help me... Thank you
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.