Click here to Skip to main content
15,918,742 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm developing a program. In that program user can select an ımage and send it to the sms page than the user will type the phone number and send it to other people , I can send string to SMS page by using SmsComposeTask like below:
C#
SmsComposeTask smsComposeTask = new SmsComposeTask();
           smsComposeTask.To = "";
           smsComposeTask.Body = "String";
           smsComposeTask.Show();

But I dont know how to do it for Pictures for MMS. Any idea?

[Edit]Code block added[/Edit]
Posted
Updated 10-Feb-13 7:39am
v3

You cannot programmatically attach an image to an MMS in Windows Phone. The use can do this using the Share function of the image, but we do not currently have this ability as developers.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900