<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[e-mail schicken...]]></title><description><![CDATA[<p>In der Hilfe hab ich das gefunden:</p>
<pre><code class="language-cpp">ShellExecute(NULL, &quot;open&quot;, &quot;mailto:ich@cool.de?subject=[Thema]&amp;body=[Text_Zeile1]%0A[Text_Zeile2]&quot;, 0, 0, SW_SHOW);
</code></pre>
<p>so damit kann ich ne email schreiben und vorgeben an wen, aber ich will das der text der e-mail gleich den von Edit1, Edit2,... ist.<br />
Ich hab das so gelöst:</p>
<pre><code class="language-cpp">ShellExecute(NULL, &quot;open&quot;, &quot;mailto:ich@cool.de?subject=[Anmeldung bei Elite]&amp;body=Real Name:[Edit1]%0AIngame Name:[Edit2]%0AAlter:[Edit3]&quot;, 0, 0, SW_SHOW);
</code></pre>
<p>das problem ist das im Body dann folgendes steht:</p>
<p>Real Name:[Edit1]<br />
Ingame Name:[Edit2]<br />
Alter:[Edit3]</p>
<p>was mache ich falsch?</p>
<p>mfg stryke</p>
<p>Frohe Weihnachten!!! <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/topic/168556/e-mail-schicken</link><generator>RSS for Node</generator><lastBuildDate>Thu, 13 Aug 2026 11:59:10 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/168556.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 24 Dec 2006 10:36:05 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to e-mail schicken... on Sun, 24 Dec 2006 11:01:26 GMT]]></title><description><![CDATA[<p>In der Hilfe hab ich das gefunden:</p>
<pre><code class="language-cpp">ShellExecute(NULL, &quot;open&quot;, &quot;mailto:ich@cool.de?subject=[Thema]&amp;body=[Text_Zeile1]%0A[Text_Zeile2]&quot;, 0, 0, SW_SHOW);
</code></pre>
<p>so damit kann ich ne email schreiben und vorgeben an wen, aber ich will das der text der e-mail gleich den von Edit1, Edit2,... ist.<br />
Ich hab das so gelöst:</p>
<pre><code class="language-cpp">ShellExecute(NULL, &quot;open&quot;, &quot;mailto:ich@cool.de?subject=[Anmeldung bei Elite]&amp;body=Real Name:[Edit1]%0AIngame Name:[Edit2]%0AAlter:[Edit3]&quot;, 0, 0, SW_SHOW);
</code></pre>
<p>das problem ist das im Body dann folgendes steht:</p>
<p>Real Name:[Edit1]<br />
Ingame Name:[Edit2]<br />
Alter:[Edit3]</p>
<p>was mache ich falsch?</p>
<p>mfg stryke</p>
<p>Frohe Weihnachten!!! <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1197301</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1197301</guid><dc:creator><![CDATA[stryke]]></dc:creator><pubDate>Sun, 24 Dec 2006 11:01:26 GMT</pubDate></item><item><title><![CDATA[Reply to e-mail schicken... on Sun, 24 Dec 2006 10:55:28 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>Also, damit kenne ich mich zwar nich so aus - was EMails verschicken angeht mein ich, aber wenn du dort [Edit2] schreibst kann es ja nicht gehen, wenn du den Text von Edit2 dort stehen haben willst.</p>
<p>Dann musst du auf jeden Fall schonmal [Edit2-&gt;Text] schreiben.</p>
<p>Ob es damit geht kann ich dir leider nicht versprechen.</p>
<p>Frohes Fest an Alle!</p>
<p>Gruß<br />
MWJK</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1197308</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1197308</guid><dc:creator><![CDATA[MWJK]]></dc:creator><pubDate>Sun, 24 Dec 2006 10:55:28 GMT</pubDate></item><item><title><![CDATA[Reply to e-mail schicken... on Sun, 24 Dec 2006 11:13:10 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">String strMAILTO = &quot;mailto:ich@cool.de?subject=[Anmeldung bei Elite]&amp;body=Real Name:[&quot; + Edit1-&gt;Text +
                                                                        &quot;]%0AIngame Name:[&quot; + Edit2-&gt;Text +
                                                                        &quot;]%0AAlter:[&quot; + Edit3-&gt;Text + &quot;]&quot;;
ShellExecute(NULL, &quot;open&quot;, strMAILTO.c_str(), 0, 0, SW_SHOW);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1197315</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1197315</guid><dc:creator><![CDATA[Jansen]]></dc:creator><pubDate>Sun, 24 Dec 2006 11:13:10 GMT</pubDate></item><item><title><![CDATA[Reply to e-mail schicken... on Sun, 24 Dec 2006 13:41:10 GMT]]></title><description><![CDATA[<p>thx.</p>
<p>nochmals frohe weihnachten</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1197391</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1197391</guid><dc:creator><![CDATA[stryke]]></dc:creator><pubDate>Sun, 24 Dec 2006 13:41:10 GMT</pubDate></item></channel></rss>