Email Composer如何在INTEL XDK(Cordova)中发送电子邮件?

时间:2016-05-13 11:04:03

标签: cordova email composer-php

为什么这不发送电子邮件?

(function()
    {
     "use strict";
     function register_event_handlers()
     {
        $(document).on("click", ".uib_w_6", function(evt)
        {
           window.plugin.EmailComposer.open({
                    to:      ['**@gmail.com'],
                    cc:      ['***@gmail.com'],
                    subject: 'Hello World!',
                    body:    'TEST',
                });
        });

        }
     document.addEventListener("app.Ready", register_event_handlers, false);
    })();

0 个答案:

没有答案