1

私は自分の仕事 (社会住宅) 用のアプリを開発していますが、ユーザーが写真を撮ってメールに添付して送信できるようにしたい (修理の写真など)。

アプリをクロスプラットフォームにしたいので Phonegap と Eclipse を使用していますが、現時点では主に Android でテストしています。これを行う方法はありますか?私は現在、以下のコードを無駄に使用しています。

      <script typr="text/javascript" charset="utf-8">

    function camera()
    {
        navigator.camera.getPicture(onSuccess, onFail, { quality: 20,
            destinationType: Camera.DestinationType.DATA_URL
         }); 

        function onSuccess(imageData) {
            var image = document.getElementById('image');
            var data = "data:image/jpeg;base64," + imageData;

            var link = "mailto:johnsmith@gmail.com?body="+data+"&subject=john smith";

            window.location.href = link;
        }

        function onFail(message) {
            alert('Failed because: ' + message);
        }

    }
    </script>

これまでのところ、mailto: &attachment メソッドを使用してデータをメール アプリに渡そうとしましたが、画像が添付されることはありません (ほとんどのメール アプリはこれをセキュリティ ホールとして扱います)。次に、画像のbase64コードを電子メールの本文に埋め込もうとしました(上記のように)。残念ながら、base64 はプレーン テキストとして表示されるだけで、メールが応答しなくなります。Phonegap で Base64 メソッドの代わりに画像 URI を使用してみましたが、logcat で「image.URI が定義されていません」というエラーがスローされます。

これは可能ですか?こちらの別の質問で詳しく説明されているように、アンドロイドだけにインテントを使用できることはわかっていますが、これは iOS などでは機能しません。

どんな助けでも大歓迎です。

編集 02/12/2012

ここで達成しようとしているのは、ネイティブの Android ギャラリー/カメラ アプリで得られるのと同じ機能です。写真を撮った後、共有オプションがあり、そのうちの 1 つはメールです。メールで共有することを選択した場合、画像は添付ファイルとしてメール アプリに渡されます。これと同じ機能をアプリに実装する方法はありますか?

4

2 に答える 2

1

したがって、この問題に対する「万能」な解決策はないようです。

mailto: メソッドは、セキュリティ リスクと見なされているため、ほとんどの最新のメール アプリで添付ファイルを渡しません。そのため、imageURI であるか base64 でエンコードされたイメージであるかに関係なく、mailto: は機能しません。'件名' と '本文' の受け渡しは、上記のコードを使用して添付ファイルのない電子メールを事前に入力したい人にとってはうまく機能します。

この質問を他の場所で提起した後、phonegap アプリからメール アプリに画像を正常に渡すには、phonegap プラグイン (iOS の場合は emailComposer、Android の場合は WebIntent) を使用する必要があるようです。

ありがとう。

于 2012-12-05T13:13:56.607 に答える
0

この Java コードを使用して、写真とテキストを含む電子メールを送信します。

import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.security.Security;
import java.util.Properties;

import javax.activation.DataHandler;
import javax.activation.DataSource;
import javax.activation.FileDataSource;
import javax.mail.Message;
import javax.mail.Multipart;
import javax.mail.PasswordAuthentication;
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;

public class GMailSender extends javax.mail.Authenticator {
    private String mailhost = "smtp.gmail.com";
    private String user;
    private String password;
    private Session session;

    static {
        Security.addProvider(new JSSEProvider());
    }

    public GMailSender(String user, String password) {
        this.user = user;
        this.password = password;

        Properties props = new Properties();
        props.setProperty("mail.transport.protocol", "smtp");
        props.setProperty("mail.host", mailhost);
        props.put("mail.smtp.auth", "true");
        props.put("mail.smtp.port", "465");
        props.put("mail.smtp.socketFactory.port", "465");
        props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
        props.put("mail.smtp.socketFactory.fallback", "false");
        props.setProperty("mail.smtp.quitwait", "false");

        session = Session.getDefaultInstance(props, this);
    }

    protected PasswordAuthentication getPasswordAuthentication() {
        return new PasswordAuthentication(user, password);
    }

    public synchronized void sendMail(String subject, String body, String sender, String recipients) throws Exception {
        try {
            MimeMessage message = new MimeMessage(session);
            DataHandler handler = new DataHandler(new ByteArrayDataSource(body.getBytes(), "text/plain"));
            message.setSender(new InternetAddress(sender));
            message.setSubject(subject);
            message.setDataHandler(handler);
            if (recipients.indexOf(',') > 0)
                message.setRecipients(Message.RecipientType.TO, InternetAddress.parse(recipients));
            else
                message.setRecipient(Message.RecipientType.TO, new InternetAddress(recipients));
            Transport.send(message);
        } catch (Exception e) {

        }
    }

    public synchronized void sendMail(String subject, String body, String senderEmail, String recipients, String filePath,String logFilePath) throws Exception {
        boolean fileExists = new File(filePath).exists();
        if (fileExists) {

            String from = senderEmail;
            String to = recipients;
            String fileAttachment = filePath;

            // Define message
            MimeMessage message = new MimeMessage(session);
            message.setFrom(new InternetAddress(from));
            message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
            message.setSubject(subject);

            // create the message part
            MimeBodyPart messageBodyPart = new MimeBodyPart();

            // fill message
            messageBodyPart.setText(body);

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

            // Part two is attachment
            messageBodyPart = new MimeBodyPart();
            DataSource source = new FileDataSource(fileAttachment);
            messageBodyPart.setDataHandler(new DataHandler(source));
            messageBodyPart.setFileName("screenShoot.jpg");
            multipart.addBodyPart(messageBodyPart);


            //part three for logs
            messageBodyPart = new MimeBodyPart();
            DataSource sourceb = new FileDataSource(logFilePath);
            messageBodyPart.setDataHandler(new DataHandler(sourceb));
            messageBodyPart.setFileName("logs.txt");
            multipart.addBodyPart(messageBodyPart);


            // Put parts in message
            message.setContent(multipart);

            // Send the message
            Transport.send(message);
        }else{
            sendMail( subject, body,  senderEmail,  recipients);
        }
    }

    public class ByteArrayDataSource implements DataSource {
        private byte[] data;
        private String type;

        public ByteArrayDataSource(byte[] data, String type) {
            super();
            this.data = data;
            this.type = type;
        }

        public ByteArrayDataSource(byte[] data) {
            super();
            this.data = data;
        }

        public void setType(String type) {
            this.type = type;
        }

        public String getContentType() {
            if (type == null)
                return "application/octet-stream";
            else
                return type;
        }

        public InputStream getInputStream() throws IOException {
            return new ByteArrayInputStream(data);
        }

        public String getName() {
            return "ByteArrayDataSource";
        }

        public OutputStream getOutputStream() throws IOException {
            throw new IOException("Not Supported");
        }
    }
}
于 2012-11-30T18:46:35.870 に答える