Symbian C++ Email Tool - symbian

I am new to this one. I want to develop the Email tool for s60 devices. How to start the email notification in symbian c++. I want to receive the email and send back to some other address.
Thanks in advance.. Please help me.

there is more then one way how to do that. I guess you can start by looking one the KCoreAppUIsNewEmailStatus in the links below:
http://wiki.forum.nokia.com/index.php/KCoreAppUIsNewEmailStatus_API
and here:
http://wiki.forum.nokia.com/index.php/Category:E-Mail
If this will not be enough look on CMsvXXX classes and CEmailAccounts in SDK help. Short introduction to them is here:
http://wiki.forum.nokia.com/index.php/Messaging
BR
STeN

Related

How to interact with cisco jabber messenger with vba

My workplace uses cisco jabber as the inhouse chat program. I am looking to provide an automated reply based on a messages I receive with data I update regularly in excel.
How can I use vba to reply to a jabber message? I have been looking around but I have found no user guides.
Any help is appreciated. an example would be great. Thank you!
It seems like the user guide is this one.
https://developer.cisco.com/docs/jabber-bots/#!cisco-jabber-bot-sdk-introduction/cisco-jabber-bot-sdk-introduction
Basically the system runs over nodeJS so you cannot use VBA but you have to work with javascript, in my opinion using excel is not the suggested option and it will be a lot less painful working with native supported format like XML.

Start to use Telegram apis

I wants to learn to use the telegram apis, but I not found a some tutorial which help me to start. I am very lost. Help;
Documentation of Telegram is very poor and outdated.
I suggest using TLSharp library written in Visual C#.
This is the first Step you should read it
https://core.telegram.org/api#getting-started
1- Creating an application
2- User authorization
3- And ..... (Continue)
Good Luck !!!

How to receive sms only with my app in monodroid?

sorry, I can't speak good ENG.
I want to make an application with xamarin (Monodroid) and receive sms with that.
How can i disable other apps sms notifications?
in eclipse can use of "abortBroadcast()",but mono dosent have that function.
Plz help me its realy important for me.
Use the BroadcastReceiver.InvokeAbortBroadcast() method.

Meetup integration in iphone

I am new in iphone. Please tell me is there any way to integrate Meetup in iphone?
if yes can you give some samples or link related to?
Use their API: http://www.meetup.com/meetup_api/

Set instant messenger display message programmatically

Would a script that sets display messages for instant messengers be simple or complex? After some searching, there doesn't seem to be any information about this at all.
For the sake of an example, if I had a text file of quotations, would it be possible to have the google talk display message change to a different quotation hourly?
Depends on which client you're using. As far as I know, Google's client doesn't offer any interface for plugins, but the open source instant messenger Pidgin does. I think there already is a plugin for what you want to do, but you can write your own using the documentation and examples they give you.
The complexity of writing something like this is based on how much C or Perl you know, since you can program in either of those for Pidgin. Reading code from other people's plugins, you should be able to figure out the Pidgin API.
You can use Kik API to programmatically send rich content and files between mobile applications. It is available for iPhone and Android platforms and takes only about 5 lines of code to integrate into your app. There is more info at the API website: http://www.kik.com/dev
Disclaimer: I'm on of the developers behind Kik API :)