mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
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:
parent
fe98d4983c
commit
f07e1c5ea1
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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 ) };
|
||||
|
|
Loading…
Reference in a new issue