Jump to content

ineedprofesionalhelp

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

ineedprofesionalhelp's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi guys. I need some help on this one, if i use a SMTP in my php mailer on a server and send the mails with the php mailer on that server, what ip will show on the receiver mail, mine or the SMTP, i ask you this cause the email providers like yahoo filters my ip and sends it to the bulk or junk. Thank you
  2. Hello all I am using a certain php script to send emails, but they all arrive in the bulk folder, if I connect to a external SMTP server will my emails arrive in the inbox folder ? And if yes I would appreciate it if someone will give me a example how can I use a external SMTP. Thank you in advance.
  3. I've tryed that, but still arives in my junk folder. Please tell me what can i do to receive the email in my inbox folder. Thank you.
  4. Hello ! I am a so called noobie in php scripting so I will appreciate any help I get. I am using a verry simple php script to send emails but the emails arrive in the junk folder. I know that its not from my smtp. I used my ISP smtp, please HELP. Thanks. <?php $to = "what@ever.com"; $subject = "ineedhelp."; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n"; $message = "<html><body>"; $message .= "<h1><b>It arrives in junk!</b></h1>"; $message .= "</body></html>"; if ( mail($to,$subject,$message,$headers) ) { echo "The email has been sent!"; } else { echo "The email has failed!"; } ?>
×
×
  • 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.