... ID, ... message ... I ... making ... Fri ... I haven't heard any responses on this and have not been able to get this to work. Has anyone been able to get...
does upload api expect user upload the attachment from a browser interface only or a server side submission only? If i have a form, i can do method post, setup...
... I don't think this is doing what you think it's doing: 1) I'm not sure if cURL will upload from a URL. 2) Uploading a file using cURL requires you to put...
... of ... it ... lack ... Yes, that was the problem. I am now able to get the ID so that I can send a message. When I do this, I have another problem....
Hi , I was trying to develop a Yahoo mail widget for my site. I started working with the sample code for PHP4. I am getting the following error."Error from...
... All methods take only one parameter, an object. It's an artifact of the multi-endpoint nature of the API...a bit of the SOAP bleeding into the JSON-RPC if...
Thanks Ryan ! ... All methods take only one parameter, an object. It's an artifact of the multi-endpoint nature of the API...a bit of the SOAP bleeding into ...
Is there a way to update a saved message without deleting it and saving it again? I am using the SaveMessage method, and was hoping there was some way in...
I only user's with preimum accounts to be able to use my application that uses the Yahoo Mail Web Services, since my application uses the APIs reserved for...
... Look at GetUserData: http://developer.yahoo.com/mail/docs/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=yMail&file=GetUserData.13.1.html The field...
In the UserFeaturePref There is a mailBoxQuota which is the user's maximum mailbox size in bytes. What is the response if the user has an unlimited size...
Here is the code I have got: ///////////////////////////////////////////////// SearchMessages searchRequest = new SearchMessages(); searchRequest.search = new...
... What happens if you change the first line? searchRequest.startMidSpecified = true; searchRequest.startMid = 0; You're not giving the WS any indication...
My problems with SearchMessages and DeleteMessage Might Be An Issue with the messages I am Saving. i.e. poorly saved message can't be searched or deleted via...
Ryan, I was making you the test application, and figure out the issue. It appears that if you have a subject with a colon ':' in it, that this syntax: ...
... The Yahoo! Mail web UIs only let you modify messages in the "Drafts" folder. If you were to save the message there, then you'll be able to update the...
... An alternative to this would be to use this instead: searchRequest.search.query = "subject:\"name:value\""; That's almost an identical search. I think the...
Ryan, Thanks for the work around, I am just going to use another delimiter besides colon. I need the exact match to work with my application. However, I ...
Ryan, Well Almost got it, however still having a little trouble. If I take the mid returned from the SearchMessage and call GetMessage right away with it, It...
... Yeah, you've stumbled on a bit of the underlying implementation leaking through. When you call SearchMessages, the response should include a fid for the...