Questions tagged [hotmail]

Outlook.com replaced Hotmail. Use the Outlook.com tag.

Hotmail was one of the first webmail services on the Internet in 1996. Microsoft acquired it in 1997 for an estimated $400 million and launched it as MSN Hotmail, later rebranded to Windows Live Hotmail as part of the Windows Live suite of products. Microsoft released the final version of Hotmail in October 2011 and it was replaced by Outlook.com in 2012.

368 questions
1
vote
1 answer

A PHP API for retrieving Mail From Yahoo, GMail, Hotmail

There are a few APIs for grabbing the address book/contact list from the major providers of email. I was wondering do APIs like this exist for grabbing emails/messages received? Thanks all EDIT I am sure I can do this myself. However, I don't want…
Abs
  • 56,052
  • 101
  • 275
  • 409
1
vote
0 answers

Hotmail vanishes any emails sent through Godaddy's SMTP

Emails go through to Gmail or Yahoo fine but Hotmail it just swallows them, doesn't go to junk mail, no kick back or refusal, nothing, it just vanishes into the ether. Is it possible to purchase SMTP relay access from a reputable provider that won't…
snappymcsnap
  • 2,050
  • 2
  • 29
  • 53
1
vote
1 answer

Hotmail issue with hyperlink in my verification emails

i just realized am sending a verification email to users/mebers but people how have hotmail account hey cant click the link...is basically stripped... what am doing wrong? there is a workaround? thanks
Francesco
  • 24,839
  • 29
  • 105
  • 152
1
vote
0 answers

send X-headers from outlook.live.com smtp

I am trying to send some emails, through hotmail (outlook.live) smtp server. I am building an app that is somewhat an email client and I need to send some custom headers to provide some functionality. The thing is that, while other email servers…
silajim
  • 33
  • 1
  • 7
1
vote
1 answer

Disable The Suggested Meetings App in Outlook Web App

My system is sending mails to my clients when they apply for position. Part of that mail is: We would like to invite you to take the next step For Gmail users, it displays well, but in Outlook Web App my users see this sentence underlined and on…
Aleksandar
  • 1,163
  • 22
  • 41
1
vote
0 answers

open graph image not working in hotmail

I got these meta tags the head of my sites, but hotmail shows no image when calling the url. Any idea to solve this?
J. Kruijt
  • 31
  • 3
1
vote
0 answers

Sending email with PHPMailer from Gmail SMTP to Hotmail

I'm stuck in the following problem and cannot find a solution in Google. I want to send an email to a user from my PHP app. I created a gmail account, set up PHPMailer, and wrote code to connect it to Gmail's SMTP. Everything works fine but all…
Alex Velickiy
  • 541
  • 1
  • 7
  • 22
1
vote
1 answer

Downloading Outlook attachments with REST API?

Im working on a project that is related to the Outlook Mail API. I want to download the attachments an email has. The documantation says that i can "get" the attachments, and they return different parameters in a json response, but im curious to…
Molnár Márk
  • 411
  • 1
  • 6
  • 14
1
vote
1 answer

Why cant send mail through smtp server?

I try to send mail from hotmail to yahoo/gmail using code as below with smtp.live.com or smtp-mail.outlook.com but keep getting error : String to = SendTo.getText(); String from = username; java.security.Security.addProvider(new…
javafreak
  • 9
  • 1
  • 4
1
vote
1 answer

JavaMail and Hotmail not working on Android

I am having trouble sending emails from a hotmail address using JavaMail. I verified that I can connect to smtp.live.com via telnet port 587. The interesting thing (to me) is if I change: host = "smtp.gmail.com" t.connect(host, username,…
jrhea
  • 61
  • 5
1
vote
0 answers

curl isnt returning any hotmail contacts

I am trying to get my contacts from Hotmail. I made a script which used to work, but now it doesn't anymore. It does return a accesstoken, but no xml or json response. I am sure that I have the correct client-id and secret. I am using Google App…
Mike Lammers
  • 542
  • 9
  • 27
1
vote
1 answer

Yahoo and Hotmail won't reply HELO/EHLO to my SMTP server

I've been looking for an answer to this all over the internet, and sadly I've come nowhere near one. Today I decided to write a SMTP server for sending/recieving emails from my RPi. I wanted to do it from scratch, so switching to Postfix is not an…
Lartu
  • 188
  • 1
  • 13
1
vote
1 answer

Why won't hotmail let me include a name in addition to my email address?

I'm trying to send emails from my Ruby on Rails application, and whenever I use the following format: Jon Doe , Hotmail marks the email as spam. However, when I use jdoe@mydomain.com without the name, it goes through fine. …
Eric S.
  • 111
  • 7
1
vote
0 answers

I have create a nodemailer serivce, but i got the error below.

my code is var wellknown = require("nodemailer-wellknown") var config = wellknown("Hotmail"); console.log(config) config.auth = { user:"ilovesunny112@hotmail.com", pass:"XXXXX" } but finally i got the error below. { [Error: Invalid login] …
Sunny
  • 11
  • 1
1
vote
0 answers

JavaMail attachment Decode Exception with Hotmail

I am trying to download attachments from Hotmail messages and getting the following exception: com.sun.mail.util.DecodingException: BASE64Decoder: Error in encoded stream: needed 4 valid base64 characters but only got 2 before EOF, the 2 most recent…