I’m able to launch email application but have a prob with the code for the body of the email. i want it to look like this :
Name:
Email:
Contact No:
Message:
Instead it came out as one line though my code has newllne. I tried replacing newline with "
" but still doesnt work. My code looks like this:
on (release) {
getURL("mailto:[email protected]?subject=Enquiries&body=Name: " + newline + "Email: " + newline + "Contact no : " + newline + "Message: ");
}