Hi everyone,
Just starting in Unity, I’ve successfully created some stuff already(Games, Demos) in unity iOS, but still struggling with this new project.
Basically is an 3D Art Gallery, where all art items(2D Textures) are stored in my unity project. So far I can handle almost everything but need an extra feature:
1 - Select one or many items from the gallery(Unity project) - Done
2 - Attach them to an email and send them(mail.app)
What I’ve read so far in the forums is for creating an email only(no attachment), something like this:
Application.OpenURL(“mailto:recipient@example.com?subject=hi!&body=Text%20goes%20here!%20”);
Works Great, opens the iphone mail.app and creates the mail format I wanted.
But how would I include some of my Art items(2D Textures, jpg, PNG, etc) as an attachment??
Remember the “art items” are stored within my application, built in unity.
thank to all, this forum is great!!!,
I’ve learnt tons here, by the way this is my first post as no answer elsewhere.