SMILEConsortium / smile_teacher_android

The SMILE Teacher Android App
http://www.smileconsortium.org
Apache License 2.0
1 stars 2 forks source link

Teacher would like ability to send summary results to an email addres #3

Closed truedat101 closed 11 years ago

truedat101 commented 11 years ago

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.

truedat101 commented 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);

thiagofnogueira commented 11 years ago

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.

chrqls commented 11 years ago

Ok, great. The feature works. We should also send along the scoreboard of results. Could you please look after that ?

thiagofnogueira commented 11 years ago

Ok! I will reopen.

truedat101 commented 11 years ago

Thanks, yes, summary should be:

thiagofnogueira commented 11 years ago

Can you send me a model of summary?

For example, now we have:

Questions:

(1) Question: ...

Alternative 1: ... Alternative 2: ... Alternative 3: ... Alternative 4: ...

Correct Answer: ...

Attach image: ....jpg

Top Scorer:

Student: .... Highest Rating: ...

How should it be?

truedat101 commented 11 years ago

Just send the students tab data view.

List of students with their results, followed by list of questions as you've already specified.

thiagofnogueira commented 11 years ago

Ok, understood!

thiagofnogueira commented 11 years ago

Fixes #3

Add List of students to summary.