Closed truedat101 closed 11 years ago
Just use an email intent:
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType("plain/text"); emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{"webmaster@website.com"}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "far away"); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "in a galaxy"); startActivity(emailIntent);
Fixes #3 (Branch: dev)
Creating feature to send summary results in an email
Take a look this feature. I put the send button on the "Show Result" ( right corner below ). Please let me know if you agree.
Ok, great. The feature works. We should also send along the scoreboard of results. Could you please look after that ?
Ok! I will reopen.
Thanks, yes, summary should be:
Can you send me a model of summary?
For example, now we have:
(1) Question: ...
Alternative 1: ... Alternative 2: ... Alternative 3: ... Alternative 4: ...
Correct Answer: ...
Attach image: ....jpg
Top Scorer:
Student: .... Highest Rating: ...
How should it be?
Just send the students tab data view.
List of students with their results, followed by list of questions as you've already specified.
Ok, understood!
Fixes #3
Add List of students to summary.
Per Teacher feedback from Ellis School Pilot, we'd like to be able to send an email containing an HTML copy of the results, possibly all questions submitted as well.