I have a simple routine I want to implement but I am not sure if I am going about it the right way. I want to use an emailintent to send a first email then following that to call another emailintent and send a second email (which will be different from the first). In essence I want to sequentially send two emails.
I tried startActivityforResult for the first email and then calling the second emailintent on that request code but this doesn't seem to work (I know Android won't give me a result code if I use StartActivityforResult to send emails externally though that doesn't concern me as the second emailintent should be called regardless of whether first was successful).
Any ideas?