-
Change mailhost
How do I change my mailhost to mail.comcast.net
Im using
URL url = new URL("mailto:" + email);
URLConnection connection = url.openConnection();
connection.setDoInput(false);
connection.setDoOutput(true);
connection.connect();
PrintWriter out = new PrintWriter(new OutputStreamWriter(connection.getOutputStream()));
to send emails. It completes without errors but the mail does not send.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|