We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Activity Action: Send a message to someone specified by the data.
OmegaIntentBuilder.from(this) .email() .text("Hello world") .emailTo("develop@omega-r.com") .subject("Great library") .createIntentHandler() .failCallback(new FailCallback() { @Override public void onActivityStartError(@NotNull Exception exc) { Toast.makeText(getApplicationContext(), "Sorry, you don't have app for sending email", Toast.LENGTH_SHORT).show(); } }) .startActivity();