Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ##QML IMPORTS
- import org.nemomobile.email 0.1
- EmailAccount {
- id: emailAccount
- }
- ###email, password and name text entries
- ##Save button
- onClicked: {
- emailAccount.address = username.text
- emailAccount.password = password.text
- emailAccount.description = accountName.text
- emailAccount.preset = 2
- emailAccount.applyPreset()
- emailAccount.save()
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement