ymsgr: Commands
How to use Yahoo Messenger functions from web page?
Commands list
1) ymsgr:sendIM?[YOURID] -- for send IM
2) ymsgr:sendIM?[YOURID]&m=[your+message] -- for send IM with message
3) ymsgr:chat?[ROOMNAME] -- for join in chat room
4) ymsgr:addfriend?[YOURID] -- for adding your account by your buddy
5) ymsgr:sendfile?[YOURID] -- for send file
6) ymsgr:call?[YOURID] -- for call
7) ymsgr:callPhone?[YOURID] -- for call to phone
8 ) ymsgr:chat <"opens chat room list"
9) y...
More
Month: April 2010
Embed Image in E-Mail is Easy in C#
Embed Image in mail
How to add logo in mail? How to add an image object in mail with out having any static URL?
(for example <img src="http://shareourideas.com/wp-content/uploads/2010/03/twitter_logo_header.png" />)
Here best solution for this…!
C# Code :-
Import this Net.Mail and Net.Mime
using System.Net.Mail;
using System.Net.Mime;
//Then use this code in button click or your own function
{
string strMailContent = "Here is your mail content….";
string fromAddress = "your-email@[your...
More