Jump to content

What's wrong with HOTMAIL??


ayok

Recommended Posts

Hi.. another question from a newbie..

I have a newsletter, and I tested to send emails to my accounts in yahoo, gmail, hotmail, and my own server. The emails were sent successfuly, except... HOTMAIL..

 

When I just sent emails with text format, my hotmail account received it in the bulk/junk mails folder. After I changed the email format to html, it didn't receive it at all... How can I send php emails to hotmail?

 

thx...

ayoksus

Link to comment
Share on other sites

There is.  Used to, you could mark mail a priority and it went to inbox. Now, since they upgraded, they require something different. I forgot what it was, but try google. I remember reading about it not to long ago.

 

In fact, I had similar problems: http://lampgeekz.blogspot.com/2006/12/hotmail-problems.html

 

Anyways, simple mail wrappers will get the trick done.  I forgot what I used, I would have to dig through my old code snippets, but I remember googling it and getting it on the 2nd or 3rd result

Link to comment
Share on other sites

Try this basic code as it is basic you might be lucky.

 

hotmail are now and going to always block users mail that are not added to

there address book.

 

but from time to time the mail gets to the inbox.

 

try this ok.

 

<?php
$to = "recipient@example.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
if (mail($to, $subject, $body)) {
 echo("<p>Message successfully sent!</p>");
} else {
 echo("<p>Message delivery failed...</p>");
}
?>

Link to comment
Share on other sites

I have had a problem with mail() failing to work (mail goes fine to gmail, doesn't even appear in junk folder in hotmail). I found that using PHPMailer to send via an authenticated SMTP server would get the mail to go through to hotmail consistently (although it still tends to end up in the junk folder, but this appears to be on account of my shared server's being flagged).

 

There is.  Used to, you could mark mail a priority and it went to inbox. Now, since they upgraded, they require something different. I forgot what it was, but try google. I remember reading about it not to long ago.

 

In fact, I had similar problems: http://lampgeekz.blogspot.com/2006/12/hotmail-problems.html

 

Anyways, simple mail wrappers will get the trick done.  I forgot what I used, I would have to dig through my old code snippets, but I remember googling it and getting it on the 2nd or 3rd result

if it were possible to get it into the inbox using a mark of some kind, what's to stop spammers from using the mark?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.