use same email address for both ways you can send to me, and rfc822

instead of text type to prevent giving handler options that aren't
email clients.
This commit is contained in:
Andy2 2011-12-12 19:00:30 -08:00
parent fe98d4983c
commit f07e1c5ea1
2 changed files with 2 additions and 2 deletions

View file

@ -1747,7 +1747,7 @@
<!-- Another paragraph in the about dialog -->
<string name="about_web">For a manual or sourcecode see:
http://xwords.sf.net. To report bugs, suggest features, offer to
help, etc., please email: eehouse@eehouse.org.</string>
help, etc., please email: xwords@eehouse.org.</string>
<!-- Empty in English, this should contain the name of the
translator/creator of the strings.xml file for this

View file

@ -60,7 +60,7 @@ public class Utils {
public static void emailAuthor( Context context )
{
Intent intent = new Intent( Intent.ACTION_SEND );
intent.setType( "text/html" );
intent.setType( "message/rfc822" ); // force email
intent.putExtra( Intent.EXTRA_SUBJECT,
context.getString( R.string.email_author_subject ) );
String[] addrs = { context.getString( R.string.email_author_email ) };