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();