Windows Live Hotmail, is a free web-based email service operated by Microsoft as part of Windows Live.

learn more… | top users | synonyms

0
votes
0answers
29 views

trying to send messages from PERL to my email

I have a PERL script running on a mac that looks as follows: use strict; use warnings; use MIME::Lite::TT; # The parameters that will change with every experiment my %params; print "Initiating ...
0
votes
0answers
20 views

Trouble using media queries for email design in Hotmail(Outlook)

I’m trying to design an email template that is also optimised for iPhone and later for Android if possible. I’ve created a different header with the class “mobileheader” for the header and a ...
0
votes
0answers
9 views

Hotmail Filters - “Newsletter” vs “Social Updates”; “Add to Contacts”; “List-Unsubscribe”

Something that I really dislike of Hotmail is that I, as developer, don't have a proper documentation about their features. I own a social network which sends email notifications to users, and I have ...
-1
votes
0answers
21 views

What would cause Hotmail to forward HTML in plain text? [closed]

I am currently using PHP's mail function to send HTML-formatted mail. A user of mine emailed me to say that when forwarded from Hotmail to Gmail, it causes the email to go into plain text. Any idea ...
0
votes
0answers
34 views

How to get MailBox Tree of hotmail in C#

Dear I have Read All Mailbox Folders as a Tree Using Imap Client. But Imap Client just supporting yahoo and gmail servers not to hotmail. here is the code for yahoo and gmail i want the same thing for ...
-1
votes
1answer
28 views

hotmail account gets blocked after few mails [closed]

I'm trying to use live.com account for sending e-mails from my PHP web application. Everything works well, but after few mails are sent, the account gets blocked and I have to verify it with logging ...
3
votes
0answers
36 views

contact list from yahoo,hotmail,gmail and Facebook in iOS

I am creating an iOS application.I have to implement a mail sending option as "Tell a friend" inside the application.For that I have to get the contacts list from the user's gmail,yahoo,man,Facebook ...
1
vote
0answers
59 views

Swiftmailer e-mail into Hotmail SPAM/Junk - SPF pass, DKIM, signed message

After a lot of researching and testing, the e-mail still coming into the SPAM/Junk folder of Hotmail. This only happens when the receiver, receives the e-mail at the first time. The content of the ...
0
votes
1answer
29 views

how do i automatically updated gmail hotmail or yahoo addressbook from website

is that possible to automatically updated gmail hotmail or yahoo address book or contacts from direct website? if yes then any kind of example available? For Example if any customer's or user's ...
0
votes
0answers
58 views

config sending email codeigniter

I've tried to send email in codeigniter using live/hotmail but I have not be able to do that :/ this is mi config $config['protocol']='smtp'; $config['smtp_host']='ssl://smtp.live.com'; ...
-2
votes
0answers
40 views

how to authenticate with server by sending email through .net'

TcpClient client = new TcpClient(); string server = "smtp.live.com"; int portNumber = 25; string success = ""; client.Connect(server, portNumber); SslStream sslStream = new ...
-3
votes
1answer
45 views

Email treated as SPAM when has Links [closed]

I've work all day long on that crazy problem. I created an HTML email that will be sent massively. I Use PHPMailer and I tried Mail Function. Both PHPMailer, it's SMTP feature and the native Mail ...
0
votes
1answer
110 views

Pear Mail gets send to hotmail's junk folder

im trying to send email from my VPS to a hotmail account using postfix and PEAR Mail, its sends perfectly to yahoo, gmail, but to hotmail goes straight to junk, i know whis question has been asked ...
0
votes
1answer
85 views

Hotmail not showing html or css background

I had problems with backgrounds not showing in most E-Mail clients such as GMail or Yahoo Mail but I found this thread and problem solved by replacing (although I lost some properties like ...
0
votes
0answers
126 views

hmailserver mails delivered to yahoo but not to hotmail/gmail

I have installed hmailserver at home alongwith WAMP and PHPmailer. I have also registered my domain at no-ip.org and changed the MX record to my domain name (something.no-ip.org). Now I am trying to ...
0
votes
0answers
77 views

Hotmail API - Reading contacts' email addresses

I'm trying to get a user's hotmail contacts' email addresses in order to give the user the ability to send invites and find contacts who are already registered on a site. The Live SDK provides an API ...
0
votes
1answer
204 views

PHPMailer Hotmail “¬”

In PHP, I'm using PHPMailer 5.2.4 to send e-mails and I'm having a really strange problem in the Hotmail (in others email readers works perfectly). The email that is sent has a link, for example: ...
0
votes
2answers
75 views

NullReferenceException while calling LoginAsync

In my WinRT app, I want the user to connect to his Hotmail account to access to his contacts. I use the Hotmail API from the Live Connect SDK from Microsoft. To establish the connection, I use this ...
0
votes
1answer
95 views

Hotmail incorrectly “stretching” HTML/CSS signature

I've been working on making a signature (CSS+HTML) work across multiple platforms, and have hit the wall when it comes to Hotmail. For some reason, when sending this signature to my Hotmail address, ...
-2
votes
1answer
258 views

How To Test If Hotmail Account Exists? [closed]

I am trying to test whether my hotmail account exists or not , but the following code did not help me. public bool IsExists_SMTPMethod(string email) { string domain = ...
0
votes
0answers
133 views

How can I get Hotmail contacts of users using the Live Connect API?

I found some Live API code for reading contacts but I don't know what are the parameters to send as well as the body data to get all contacts (me/contacts). The code I found is in this question ...
0
votes
0answers
105 views

Hotmail php mail and spf

I realize that this has been debated before but I haven't found useful information to help me solve this particular problem. I suspect it may be something server-related but I'm not sure what. This ...
1
vote
1answer
678 views

HTML Email - Outlook.com/Hotmail CSS overriding styles

I'm working on an email that is having spacing issues between the <p> tags in hotmail. I used the .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, ...
0
votes
1answer
219 views

Hotmail Contact Import Alternate PHP

I got an old script working in local for importing hotmail email address. but can't find it working in live server. Says connection timeout. Script total detail on: ...
2
votes
0answers
132 views

How can I programmatically access tasks in hotmail?

I would like to be able to programmatically access Hotmail tasks so I can keep resetting the reminder until the task is marked as complete. Does anyone know how to do this? I have seen that there is ...
0
votes
2answers
143 views

Issue using <div> as vertical spacer in Hotmail HTML email

We're using the following code as a vertical spacer in an HTML email: <div style="height:14px; font-size:14px; line-height:14px;">&#160;</div> This works well everywhere -- except ...
0
votes
1answer
122 views

CSV Headers in Gmail, Yahoo, Outlook and Hotmail?

I want to know the list of CSV headers from the CSV files provided by GMail, Yahoo , Outlook and Hotmail. Tried looking over the internet for the list but couldn't find any. I am trying to import ...
0
votes
0answers
90 views

When listing messages over POP3 from Hotmail - Can't get new messages sent while logged in

So I've made a PHP script that connects to Hotmail and lists the emails via the POP3 "LIST" command. Sadly it will not list messages that are sent to it while it's still in the same login session. ...
0
votes
1answer
63 views

Hotmail live registration works?

I have looked at it for a while using firebug, but I cannot seem to find how they send the information, for example normally on my site's registration page, once the form is filled I send it via post ...
0
votes
0answers
103 views

PHP Email Form Don't Send Email in Hotmail Account

i have written a email form in PHP it works fine but it can't send mail to my custom hotmail account. I have configured HotMail with my custom domain, like info@example.comAny idea?
0
votes
2answers
218 views

Swiftmailer SMTP Hotmail doesn't works

I try to send an e-mail with Swiftmailer. But it doesn't works... This is what I tried: $transport = Swift_SmtpTransport::newInstance('smtp.life.com', 25) ->setUsername('olivier-zwat@hotmail.be') ...
-3
votes
1answer
142 views

hacked hotmail account? [closed]

I noticed this string in the url of my hotmail account while checking my mail, ...
0
votes
4answers
1k views

Hotmail (live.mail) css float not supported?

Trying a whole bunch of different ways to get my elements to float (which all work in gmail etc) in hotmail. < div class="plzfloat" id="floats" style="float:left"> #floats{float:left;} ...
1
vote
1answer
317 views

Spaces after <td></td> content in Hotmail

I am designing an e-blast, and when testing it in Hotmail, it adds extra space to the bottom of the content between <td></td> tags. It looks fine in all the other clients. I have added ...
0
votes
0answers
65 views

get access token for hotmail for install application

I am new into mobile application. how to get access token for hotmail to get contact and calender please help me . i am using sencha for developing app
0
votes
1answer
108 views

How to use hotmail Account Authentication in Web Application?

I want to use hotmail account for authorization in my web Application . How can I do this?
0
votes
0answers
77 views

Outlook and Hotmail conditional comment

Is there a way to hide the content in Outlook by using a conditional comment, but the content still showing up in Hotmail? Let's say, If I use <!--[if !mso 9]><!--> Content ...
1
vote
2answers
226 views

Match hotmail returned email_hashes with the emails in my database

I was able to import user's contacts: $url = 'https://apis.live.net/v5.0/me/contacts?access_token='.$accesstoken.''; $xmlresponse = curl_file_get_contents($url); $xml = ...
0
votes
1answer
755 views

hotmail get contacts with curl using api

function tratar_hotmail(){ $client_id = '0xxxxxxxxxxxxxxxx2'; $client_secret = 'Wyyyyyyyyyyyyyyyyyp'; $redirect_uri = 'http://domain.com/'; $auth_code = $_GET["code"]; ...
0
votes
1answer
150 views

styles not applying in hot mail email template

I have a table in my email template. I applied styles to right align the text inside the td. But when i check them using hotmail the style tag looks empty. I tried align="right" inside the td. But ...
0
votes
0answers
211 views

Importing Tasks to Hotmail/Outlook.com [closed]

I have a CSV file with about 40 tasks that i want to upload the Hotmail/Outlook.com in a programmatic fashion. Looks like Hotmail/Outlook.com support tasks. I just cant figure out how to import my CSV ...
1
vote
1answer
476 views

Hotmail contacts API

I want to fetch all contacts email address from hotmail to my website using php to invite friends. 1.I found a hotmail contact api from: http://livecontactsphp.codeplex.com/ but not working....just ...
0
votes
0answers
313 views

How do I import hotmail contacts using ASP.NET?

I have problem to import hotmail contacts. I am able to login to Hotmail but when it comes to my LifetronsDashboard.aspx.cs page load it gives me Exception. Exception An exception of type ...
0
votes
2answers
150 views

PHP Mail not being received? [duplicate]

Possible Duplicate: Mail not being received by hotmail.com I have this simple form on my site and I do not receive emails when it sends into my Hotmail account, not even the Junk folder. ...
0
votes
2answers
117 views

email hyperlink allow user to choose email client

On some websites when I click the contact email link, I get either a list or some icons for common email programs like gmail, yahoo, hotmail, etc., and I can pick which email program I want to open, ...
0
votes
1answer
137 views

Hotmail and Outlook issues with radio buttons

Recently I implemented a system where customers could give feedback about customer service in an email. The email sent to them included two radio buttons, a comment text entry box, and a submit ...
2
votes
2answers
365 views

Email sending with CI using hotmail

I am trying to create an email notification system with CI. The problem is the system on which I am working on has blocked gmail. So, i am unable to use the gmail SMTP. Now, I have to figure out a way ...
0
votes
1answer
131 views

Hotmail login on azure asp.net web application

I'm developing ASP.NET web application that will run on Windows Azure. In my local enviroment http address of application is 127.0.0.1:81. I want to use possibility of logging for user with hotmail ...
-1
votes
1answer
214 views

Maximum allowed length of Hotmail signature? [closed]

I'm trying to insert a HTML letterhead as a Personal Signature on Hotmail's 'Message font and signature' page. I can do this easily by selecting all (Ctrl+A) in the letterhead's html page, copying ...
0
votes
1answer
500 views

send email via hotmail in python

I want to send an email from my server. I'm trying to send using a hotmail account that I already have. user = "myaddress@hotmail.com" passwd = "xxxxxxxxx" from_addr = "myaddress@hotmail.com" ...

1 2 3 4 5 6