My application (C# winforms) constructs an email and sends it to a customer. To the email there is a photo attached. What i want to do, is to add a facebook share button into the e-mail so the user can share the attached photo on facebook by clicking this share button.
I already managed to construct the e-mail with the photo attached. I manage also to add a facebook share button to e-mail, but i cannot figure out how the attached photo can be uploaded and shared on facebook through a single url.
The url (which is attached to the share button) i came up with, which is pretty close to what i want:
href="http://www.facebook.com/sharer.php?u= 'img src="http://www.somesite.com/apicture.jpg" />
but this requires the photo to be uploaded to somesite.com before this will work, and that's not what i want.
Any clues?