Re: [android-developers] sending email automatically

2011-10-12 Thread Milad khajavi
see this post:
http://stackoverflow.com/questions/2020088/sending-email-in-android-using-javamail-api-without-using-the-default-android-app

On Tuesday, October 11, 2011, arun kumar  wrote:
> SMTP means simple mail transfer protocol. first search in google about
> smtp in android and then you got some idea...
> On 10/10/11, rahul verma  wrote:
>> What is SMTP?
>>
>> On 10 Oct 2011 06:16, "rahul verma"  wrote:
>>
>> Yeah i too need to know that. .whenever we try to send a mail a gmail app
>> screen comes ,what is the way to omit that i mean send the mail
>> automatically
>>
>>>
>>> On 8 Oct 2011 22:43, "Palike"  wrote:
>>>
>>> Hi, at first sorry for my English
>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to android-developers@googlegroups.com
>> To unsubscribe from this group, send email to
>> android-developers+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

-- 
Milad Khajavi
http://lincafe.wordpress.com
Having the source means you can do it yourself.
I tried to change the world, but I couldn’t find the source code.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] sending email automatically

2011-10-11 Thread arun kumar
SMTP means simple mail transfer protocol. first search in google about
smtp in android and then you got some idea...
On 10/10/11, rahul verma  wrote:
> What is SMTP?
>
> On 10 Oct 2011 06:16, "rahul verma"  wrote:
>
> Yeah i too need to know that. .whenever we try to send a mail a gmail app
> screen comes ,what is the way to omit that i mean send the mail
> automatically
>
>>
>> On 8 Oct 2011 22:43, "Palike"  wrote:
>>
>> Hi, at first sorry for my English
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] sending email automatically

2011-10-10 Thread metin ögtem
Android mail system requre Gmail or other authentication..That means
some screnn pops up and show users to send mail to you..

2011/10/10, rahul verma :
> What is SMTP?
>
> On 10 Oct 2011 06:16, "rahul verma"  wrote:
>
> Yeah i too need to know that. .whenever we try to send a mail a gmail app
> screen comes ,what is the way to omit that i mean send the mail
> automatically
>
>>
>> On 8 Oct 2011 22:43, "Palike"  wrote:
>>
>> Hi, at first sorry for my English
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] sending email automatically

2011-10-09 Thread rahul verma
What is SMTP?

On 10 Oct 2011 06:16, "rahul verma"  wrote:

Yeah i too need to know that. .whenever we try to send a mail a gmail app
screen comes ,what is the way to omit that i mean send the mail
automatically

>
> On 8 Oct 2011 22:43, "Palike"  wrote:
>
> Hi, at first sorry for my English

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] sending email automatically

2011-10-09 Thread rahul verma
Yeah i too need to know that. .whenever we try to send a mail a gmail app
screen comes ,what is the way to omit that i mean send the mail
automatically

On 8 Oct 2011 22:43, "Palike"  wrote:

Hi, at first sorry for my English. I need to make app that will
automatically send a file from the SD card. I thought that I will do
it through email. I write the code to send email

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;

public class EmailActivity extends Activity {

   /** Called when the activity is first created. */
   @Override
   public void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.main);
   }

   public void poslat(View button) {

   Intent i = new Intent(android.content.Intent.ACTION_SEND);
   String Email[] = { "a...@aa.aa" };
   i.putExtra(android.content.Intent.EXTRA_EMAIL, Email);
   i.putExtra(android.content.Intent.EXTRA_SUBJECT, "Tu bude
datum");
   i.putExtra(Intent.EXTRA_STREAM,
Uri.parse("file:///sdcard/lala/
lala.txt"));
   i.setType("plain/text");
   startActivity(i);
   }
}

works well, but I feel that it cannot be configured to be sending
automatically. How can I start? or do you have any idea how to
automatically send a file from the SD card? eg. via FTP or something
else? .. Thank you very much

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] sending email automatically

2011-10-08 Thread lbendlin
to extend on that - look into including your own SMTP client.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] sending email automatically

2011-10-08 Thread Michael Banzon
Look at SMTP.

On Sat, Oct 8, 2011 at 7:11 PM, Palike  wrote:
> Hi, at first sorry for my English. I need to make app that will
> automatically send a file from the SD card. I thought that I will do
> it through email. I write the code to send email
>
> import android.app.Activity;
> import android.content.Intent;
> import android.net.Uri;
> import android.os.Bundle;
> import android.view.View;
>
> public class EmailActivity extends Activity {
>
>        /** Called when the activity is first created. */
>    @Override
>    public void onCreate(Bundle savedInstanceState) {
>        super.onCreate(savedInstanceState);
>        setContentView(R.layout.main);
>    }
>
>    public void poslat(View button) {
>
>        Intent i = new Intent(android.content.Intent.ACTION_SEND);
>                String Email[] = { "a...@aa.aa" };
>                i.putExtra(android.content.Intent.EXTRA_EMAIL, Email);
>                i.putExtra(android.content.Intent.EXTRA_SUBJECT, "Tu bude 
> datum");
>                i.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///sdcard/lala/
> lala.txt"));
>                i.setType("plain/text");
>                startActivity(i);
>        }
> }
>
> works well, but I feel that it cannot be configured to be sending
> automatically. How can I start? or do you have any idea how to
> automatically send a file from the SD card? eg. via FTP or something
> else? .. Thank you very much
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>



-- 
Michael Banzon
http://michaelbanzon.com/

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en