<?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[Frage]]></title><description><![CDATA[<p>Gibt es irgendeine Anweißung die an alle in Outlook gespeicherte e-mail adressen ein text mit anhang verschickt??</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/104013/frage</link><generator>RSS for Node</generator><lastBuildDate>Sat, 02 May 2026 03:16:12 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/104013.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 15 Mar 2005 14:45:58 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Frage on Tue, 15 Mar 2005 14:45:58 GMT]]></title><description><![CDATA[<p>Gibt es irgendeine Anweißung die an alle in Outlook gespeicherte e-mail adressen ein text mit anhang verschickt??</p>
]]></description><link>https://www.c-plusplus.net/forum/post/745101</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/745101</guid><dc:creator><![CDATA[wewe]]></dc:creator><pubDate>Tue, 15 Mar 2005 14:45:58 GMT</pubDate></item><item><title><![CDATA[Reply to Frage on Tue, 15 Mar 2005 14:50:17 GMT]]></title><description><![CDATA[<p>wewe schrieb:</p>
<blockquote>
<p>Gibt es irgendeine Anweißung die an alle in Outlook gespeicherte e-mail adressen ein text mit anhang verschickt??</p>
</blockquote>
<p>ich glaub die hies 'ILOVEYOU.VBS'. den und ähnliche findeste garantiert irgendwo noch im netz <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/745110</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/745110</guid><dc:creator><![CDATA[net 0]]></dc:creator><pubDate>Tue, 15 Mar 2005 14:50:17 GMT</pubDate></item><item><title><![CDATA[Reply to Frage on Tue, 15 Mar 2005 14:56:12 GMT]]></title><description><![CDATA[<p>Wie man im Adressbuch rumfummelt, weiß ich nicht. Aber hier ein Codeschnipsel zum Versenden von Emails:</p>
<pre><code class="language-cpp">#include &lt;mapi.h&gt;

VOID SendMail(HWND hwnd,
              LPTSTR adrReceiver,
              LPTSTR nameReceiver,
              LPTSTR adrFrom,
              LPTSTR nameFrom,
              LPTSTR subject,
              LPTSTR text)
{
     LPMAPISENDMAIL pfnSendMail;
     MapiRecipDesc  rdOriginator;
     MapiRecipDesc  rdRecipient[1];
     LPMAPILOGOFF   pfnLogoff;
     LPMAPILOGON    pfnLogon;
     MapiMessage    mapimsg;
     HINSTANCE      hDll;
     LHANDLE        lHnd;

     if(NULL == (hDll = LoadLibrary(TEXT(&quot;MAPI32.DLL&quot;))))
     {
         MessageBox(hwnd, &quot;Could not load Mapi32.dll&quot;, &quot;ERROR&quot;, MB_OK|MB_ICONERROR);
         return;
     }

     pfnLogon    = (LPMAPILOGON)   GetProcAddress(hDll, &quot;MAPILogon&quot;);
     pfnLogoff   = (LPMAPILOGOFF)  GetProcAddress(hDll, &quot;MAPILogoff&quot;);
     pfnSendMail = (LPMAPISENDMAIL)GetProcAddress(hDll, &quot;MAPISendMail&quot;);

     pfnLogon(0, NULL, NULL, 0, 0, &amp;lHnd);

     mapimsg.ulReserved          = 0;
     mapimsg.lpszSubject         = subject;
     mapimsg.lpszNoteText        = text;
     mapimsg.lpszMessageType     = NULL;
     mapimsg.lpszDateReceived    = NULL;
     mapimsg.lpszConversationID  = NULL;
     mapimsg.flFlags             = 0;
     mapimsg.lpOriginator        = &amp;rdOriginator;
     mapimsg.nRecipCount         = sizeof(rdRecipient) / sizeof(rdRecipient);
     mapimsg.lpRecips            = rdRecipient;
     mapimsg.nFileCount          = 0;
     mapimsg.lpFiles             = NULL;

     rdOriginator.ulReserved     = 0;
     rdOriginator.ulRecipClass   = MAPI_ORIG;
     rdOriginator.lpszName       = nameFrom;
     rdOriginator.lpszAddress    = adrFrom;
     rdOriginator.ulEIDSize      = 0;
     rdOriginator.lpEntryID      = NULL;

     rdRecipient[0].ulReserved   = 0;
     rdRecipient[0].ulRecipClass = MAPI_TO;
     rdRecipient[0].lpszName     = nameReceiver;
     rdRecipient[0].lpszAddress  = adrReceiver;
     rdRecipient[0].ulEIDSize    = 0;
     rdRecipient[0].lpEntryID    = NULL;

     pfnSendMail(lHnd, NULL, &amp;mapimsg, 0, 0);
     pfnLogoff(lHnd, 0, 0, 0);

     FreeLibrary(hDll);
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/745126</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/745126</guid><dc:creator><![CDATA[WebFritzi]]></dc:creator><pubDate>Tue, 15 Mar 2005 14:56:12 GMT</pubDate></item><item><title><![CDATA[Reply to Frage on Tue, 15 Mar 2005 15:05:10 GMT]]></title><description><![CDATA[<p>als anhang noch das adressbuch <a href="http://msdn.microsoft.com/workshop/wab/wabentry.asp" rel="nofollow">http://msdn.microsoft.com/workshop/wab/wabentry.asp</a><br />
dann kannst du dein virus fertig schreiben <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/745134</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/745134</guid><dc:creator><![CDATA[miller_m]]></dc:creator><pubDate>Tue, 15 Mar 2005 15:05:10 GMT</pubDate></item><item><title><![CDATA[Reply to Frage on Tue, 15 Mar 2005 19:01:17 GMT]]></title><description><![CDATA[<p>Endlich treffe ich mal auf normale leute !!! Danke!!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/745353</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/745353</guid><dc:creator><![CDATA[wewewewe]]></dc:creator><pubDate>Tue, 15 Mar 2005 19:01:17 GMT</pubDate></item><item><title><![CDATA[Reply to Frage on Tue, 15 Mar 2005 19:09:37 GMT]]></title><description><![CDATA[<p>Wo gibt man da oben en Text und den anhang ein ???</p>
]]></description><link>https://www.c-plusplus.net/forum/post/745367</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/745367</guid><dc:creator><![CDATA[wqasd]]></dc:creator><pubDate>Tue, 15 Mar 2005 19:09:37 GMT</pubDate></item><item><title><![CDATA[Reply to Frage on Wed, 16 Mar 2005 08:03:49 GMT]]></title><description><![CDATA[<p>letzter param von webfritzis funktion ist der text<br />
und die files siehe<br />
<a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/mapi/html/8dce3399-176b-48c9-acff-ccdeedbc8033.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/mapi/html/8dce3399-176b-48c9-acff-ccdeedbc8033.asp</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/745652</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/745652</guid><dc:creator><![CDATA[miller_m]]></dc:creator><pubDate>Wed, 16 Mar 2005 08:03:49 GMT</pubDate></item><item><title><![CDATA[Reply to Frage on Wed, 16 Mar 2005 13:11:46 GMT]]></title><description><![CDATA[<p>Tut mir leid leute ich bin erst 14 und nicht so gut in Englisch <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/745939</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/745939</guid><dc:creator><![CDATA[wewe]]></dc:creator><pubDate>Wed, 16 Mar 2005 13:11:46 GMT</pubDate></item><item><title><![CDATA[Reply to Frage on Wed, 16 Mar 2005 13:58:12 GMT]]></title><description><![CDATA[<p>wewe schrieb:</p>
<blockquote>
<p>Tut mir leid leute ich bin erst 14 und nicht so gut in Englisch <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
</blockquote>
<p>dann musst ganz schnell englisch lernen oder schneller altern <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
<p>google mal nach &quot;MapiFileDesc&quot; dann wirst du es schon finden</p>
]]></description><link>https://www.c-plusplus.net/forum/post/745978</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/745978</guid><dc:creator><![CDATA[miller_m]]></dc:creator><pubDate>Wed, 16 Mar 2005 13:58:12 GMT</pubDate></item><item><title><![CDATA[Reply to Frage on Wed, 16 Mar 2005 19:24:08 GMT]]></title><description><![CDATA[<p>Ist das hier richtig ?? (wider ein Text auf englisch <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>
<p>#include &lt;mapi.h&gt;<br />
...</p>
<p>typedef ULONG (FAR PASCAL *MAPIFUNC) (LHANDLE lhSession, ULONG ulUIParam,<br />
lpMapiMessage lpMessage, FLAGS flFlags,<br />
ULONG ulReserved);</p>
<p>void CEMailDlg::OnSend()<br />
{<br />
const HINSTANCE hMAPILib = ::LoadLibrary(&quot;MAPI32.DLL&quot;);</p>
<p>if (hMAPILib)<br />
{<br />
MAPIFUNC lpMAPISendMail = (MAPIFUNC) GetProcAddress(hMAPILib, &quot;MAPISendMail&quot;);</p>
<p>if (lpMAPISendMail != NULL)<br />
{<br />
static MapiMessage Msg;<br />
memset(&amp;Msg, 0, sizeof(Msg));</p>
<p>Msg.lpszSubject = &quot;Put subject text here&quot;;<br />
Msg.lpszNoteText = &quot;Put message text here&quot;;</p>
<p>lpMAPISendMail(NULL, NULL, &amp;Msg, (FLAGS) (MAPI_LOGON_UI | MAPI_DIALOG), 0);<br />
}<br />
else<br />
{<br />
ASSERT(FALSE);<br />
}</p>
<p>VERIFY(::FreeLibrary(hMAPILib));<br />
}<br />
else<br />
{<br />
ASSERT(FALSE);<br />
}<br />
}</p>
]]></description><link>https://www.c-plusplus.net/forum/post/746272</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/746272</guid><dc:creator><![CDATA[wewe]]></dc:creator><pubDate>Wed, 16 Mar 2005 19:24:08 GMT</pubDate></item></channel></rss>