2012-10-09 28 views
6
import javax.mail.BodyPart; 
import javax.mail.Message; 
import javax.mail.MessagingException; 
import javax.mail.Multipart; 
import javax.mail.SendFailedException; 
import javax.mail.Session; 
import javax.mail.Transport; 
import javax.mail.internet.InternetAddress; 
import javax.mail.internet.MimeBodyPart; 
import javax.mail.internet.MimeMessage; 
import javax.mail.internet.MimeMultipart;  

private void sendMail() throws MessagingException{ 

    String host = "smtp.gmail.com"; 
    String password = "abcde12345"; 
    String from = "[email protected]"; 
    String toAddress = email; 
    String filename = Environment.getExternalStorageDirectory() + "/jam.jpg"; 

    Properties properties = System.getProperties(); 
    properties.put("mail.smtp.host", host); 
    properties.put("mail.smtps.auth", true); 
    properties.put("mail.smtp.starttls.enable", true); 
    Session session = Session.getInstance(properties, null); 

    MimeMessage message = new MimeMessage(session); 
    message.setFrom(new InternetAddress(from)); 
    message.setRecipients(Message.RecipientType.TO, toAddress); 
    message.setSubject("Anti-Theft Attachment"); 

    BodyPart messageBodyPart = new MimeBodyPart(); 
    messageBodyPart.setText(smsMessageString); 

    Multipart multipart = new MimeMultipart(); 
    multipart.addBodyPart(messageBodyPart); 
    message.setContent(multipart); 

    try{ 
     Transport transport = session.getTransport("smtps"); 
     transport.connect(host, from, password); 
     transport.sendMessage(message, message.getAllRecipients()); 
     System.out.println("Mail Sent Successfully"); 
     transport.close(); 
    } catch (SendFailedException sfe){ 
     System.out.println(sfe); 
    } 
}; 

Pracuję nad aplikacją, która automatycznie wyśle ​​wiadomość e-mail do użytkownika informującego użytkownika o aktualnym statusie telefonu po kradzieży lub zgubienia telefonu. Ale napotkałem problem podczas importowania javax.mail "Nie można rozwiązać problemu z plikiem javax.mail". Co powinienem zrobić? Dzięki ...Import javax.mail nie może zostać rozwiązany

+1

http://stackoverflow.com/questions/2020088/sending-email-in-android-using-javamail-api-without-using-default-built-in-a – dira

+1

ADD 3 słoików znalezionych w następujących link do swojego projektu Android. http://stackoverflow.com/a/2033124/375953 – dira

+0

Dzięki za pomoc :) –

Odpowiedz

Powiązane problemy