Jump to content

Gio

Members
  • Posts

    2
  • Joined

  • Last visited

Gio's Achievements

Newbie

Newbie (1/14)

  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. Is Zend_Mail secure enough to use to send emails from my php web site? Thanks
  2. There have been problems with my usage of the php mail function. Technical support wrote me this: "If you use email scripts you will need to ensure that they are secure and not capable of being email injected / Exploited." This was the code in my php file: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ $subject='somthing'; $message='Your username is: abc; $headers = "MIME-Version: 1.0\n"; $headers .= "Content-type: text/plain; charset=iso-8859-1\n"; $headers .= "X-Priority: 3\n"; $headers .= "X-MSMail-Priority: Normal\n"; $headers .= "X-Mailer: PHP/"."MIME-Version: 1.0\n"; $headers .= "From: me\n"; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ What should I change to comply with TC guidelines? Thanks, Gio
×
×
  • Create New...