<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic send email and input in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115055#M73817</link>
    <description>&lt;P&gt;hi&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I did good code to send email without any problem, but i have 3 input I want to display in body of email&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;how I can do to get it&amp;nbsp;&lt;/P&gt;

&lt;P&gt;my input Id is a, b, c&lt;/P&gt;

&lt;P&gt;this my code&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;PRE class="brush:xml;"&gt;cordova.plugins.email.isAvailable(
    function (isAvailable) {
        // alert('Service is not available') unless isAvailable;
    }
);
        cordova.plugins.email.open({
    to:      'a@a.com',
    subject: 'AAAAA',
    body:   '&amp;lt;h1&amp;gt;Nice greetings from Leipzig&amp;lt;/h1&amp;gt;',


    isHtml:  true
});&lt;/PRE&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
    <pubDate>Wed, 03 Feb 2016 01:21:42 GMT</pubDate>
    <dc:creator>ayman_a_</dc:creator>
    <dc:date>2016-02-03T01:21:42Z</dc:date>
    <item>
      <title>send email and input</title>
      <link>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115055#M73817</link>
      <description>&lt;P&gt;hi&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I did good code to send email without any problem, but i have 3 input I want to display in body of email&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;how I can do to get it&amp;nbsp;&lt;/P&gt;

&lt;P&gt;my input Id is a, b, c&lt;/P&gt;

&lt;P&gt;this my code&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;PRE class="brush:xml;"&gt;cordova.plugins.email.isAvailable(
    function (isAvailable) {
        // alert('Service is not available') unless isAvailable;
    }
);
        cordova.plugins.email.open({
    to:      'a@a.com',
    subject: 'AAAAA',
    body:   '&amp;lt;h1&amp;gt;Nice greetings from Leipzig&amp;lt;/h1&amp;gt;',


    isHtml:  true
});&lt;/PRE&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Wed, 03 Feb 2016 01:21:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115055#M73817</guid>
      <dc:creator>ayman_a_</dc:creator>
      <dc:date>2016-02-03T01:21:42Z</dc:date>
    </item>
    <item>
      <title>See the plugin doc page for</title>
      <link>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115056#M73818</link>
      <description>&lt;P&gt;See the plugin doc page for an example &amp;gt; &lt;A href="https://github.com/katzer/cordova-plugin-email-composer#open-a-pre-filled-email-draft" target="_blank"&gt;https://github.com/katzer/cordova-plugin-email-composer#open-a-pre-filled-email-draft&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Feb 2016 02:57:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115056#M73818</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2016-02-06T02:57:51Z</dc:date>
    </item>
    <item>
      <title>In this case, using jQuery</title>
      <link>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115057#M73819</link>
      <description>&lt;P&gt;In this case, using jQuery you can add the value of your 3 input elements as following:&lt;/P&gt;

&lt;PRE style="color: rgb(0, 0, 0); line-height: normal;"&gt;cordova.plugins.email.open({
    to:      'a@a.com',
    subject: 'AAAAA',
    body:   '&amp;lt;h1&amp;gt;'+ $('#a').val() + $('#b').val() + $('#c').val() +'&amp;lt;/h1&amp;gt;',


    isHtml:  true
});&lt;/PRE&gt;</description>
      <pubDate>Sat, 06 Feb 2016 04:43:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115057#M73819</guid>
      <dc:creator>Elroy_A_Intel</dc:creator>
      <dc:date>2016-02-06T04:43:41Z</dc:date>
    </item>
    <item>
      <title>Quote:Elroy Ashtian Jr (Intel</title>
      <link>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115058#M73820</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Elroy Ashtian Jr (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;In this case, using jQuery you can add the value of your 3 input elements as following:&lt;/P&gt;

&lt;PRE&gt;cordova.plugins.email.open({
    to:      'a@a.com',
    subject: 'AAAAA',
    body:   '&amp;lt;h1&amp;gt;'+ $('#a').val() + $('#b').val() + $('#c').val() +'&amp;lt;/h1&amp;gt;',


    isHtml:  true
});&lt;/PRE&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;well done&lt;/P&gt;

&lt;P&gt;it's working with me&amp;nbsp;&lt;/P&gt;

&lt;P&gt;but I need add label before value of a or b or c like this&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;name: value of a&lt;/P&gt;

&lt;P&gt;I did like this&lt;/P&gt;

&lt;PRE class="brush:;"&gt;cordova.plugins.email.open({
    to:      'a@a.com',
    subject: 'AAAAA',
    body:   '&amp;lt;h1&amp;gt;'First Name + $('#a').val() Last Name + $('#b').val() User Name+ $('#c').val() +'&amp;lt;/h1&amp;gt;',


    isHtml:  true
});

&lt;/PRE&gt;

&lt;P&gt;but not working with me :(&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2016 13:35:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115058#M73820</guid>
      <dc:creator>ayman_a_</dc:creator>
      <dc:date>2016-02-07T13:35:00Z</dc:date>
    </item>
    <item>
      <title>You need to quote the strings</title>
      <link>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115059#M73821</link>
      <description>&lt;P&gt;You need to quote the strings you are concatenating. For example:&lt;/P&gt;

&lt;P&gt;'&amp;lt;h1&amp;gt;' &lt;STRONG&gt;+ "First Name" +&lt;/STRONG&gt; $('#a').val() + ...&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2016 17:19:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115059#M73821</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2016-02-10T17:19:31Z</dc:date>
    </item>
    <item>
      <title>I'm from Brazil. Help me. I'm</title>
      <link>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115060#M73822</link>
      <description>&lt;P&gt;I'm from Brazil. &lt;SUP&gt;&lt;STRONG&gt;Help me&lt;/STRONG&gt;&lt;/SUP&gt;. I'm trying to email the Intel XDK and not be working. It does not send, no effect. The version of my Intel XDK 3357.&lt;BR /&gt;
	The cord-email-composer plugin is installed on my project. I am using the Bootstrap framework.&lt;/P&gt;

&lt;P&gt;In the first example, I use intel.xdk.device.sendEmail and second, use the cordova.plugins.email.open. &lt;STRONG&gt;WHERE I AM missing?&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;I've done two code:&lt;BR /&gt;
	First example:&lt;/P&gt;

&lt;P&gt;&amp;lt;body&amp;gt;&lt;BR /&gt;
	&amp;lt;input type="button" onclick="enviar3()" value="Exibir Alert" /&amp;gt;&lt;BR /&gt;
	&amp;lt;/body&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;lt;head&amp;gt;&amp;nbsp;&lt;BR /&gt;
	&amp;lt;script type="text/javascript"&amp;gt;&lt;BR /&gt;
	function enviar3()&lt;BR /&gt;
	{&lt;BR /&gt;
	alert("sss");&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; intel.xdk.device.sendEmail("yyyyy",&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "ajjaf77@gmail.com", &amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "teste", &amp;nbsp;// The subject&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; true, &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Is Html&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "", &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // CCed&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "" &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// BCCed&lt;BR /&gt;
	)};&lt;BR /&gt;
	&amp;lt;/script&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	Segund example:&lt;/P&gt;

&lt;P&gt;&amp;lt;script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; cordova.plugins.email.open({&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; to: &amp;nbsp; &amp;nbsp; &amp;nbsp;'ajjaf77@gmail.com',&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; cc: &amp;nbsp; &amp;nbsp; &amp;nbsp;'ajjaf@bol.com.br',&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; subject: 'Greetings',&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; body: &amp;nbsp; &amp;nbsp;'How are you? Nice greetings from Leipzig'&lt;BR /&gt;
	});&lt;BR /&gt;
	&amp;lt;/script&amp;gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jun 2016 01:59:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115060#M73822</guid>
      <dc:creator>Jorge_F_1</dc:creator>
      <dc:date>2016-06-05T01:59:40Z</dc:date>
    </item>
    <item>
      <title>Do not use the " intel.xdk."</title>
      <link>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115061#M73823</link>
      <description>&lt;P&gt;Do not use the " intel.xdk." plugins, they have been retired and are not being updated or maintained. There are many third-party Cordova plugins that provide far more features and are being maintained by the open source community. Check the "featured plugin" list, I believe there is an email plugin there. If not, search GitHub or the Cordova plugin registry for additional options.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2016 01:28:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/send-email-and-input/m-p/1115061#M73823</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2016-06-06T01:28:15Z</dc:date>
    </item>
  </channel>
</rss>

