<?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[Mailprogramm(mail beenden)]]></title><description><![CDATA[<p>hi!</p>
<p>ich bin gerade dabei ein mailprogramm in c# zu schreiben und es funktioniert soweit auch schon ganz gut ich kann mich schon anmelden am smtp server usw...</p>
<p>ich stehe nur vor einem problem:</p>
<pre><code>mailData =  &quot;From: &quot; + this.username + &quot;&lt;&quot; + this.fromEmail + &quot;&gt;\n&quot;;
mailData += &quot;To: &quot;;
for(int i = 0; i &lt; acceptors.Length; i++){
   mailData += acceptors[i] + &quot;, &quot;;
}
mailData += &quot;\n&quot;;
mailData += &quot;Subject: &quot; + subject;

mailData += mail;

Console.WriteLine(&quot;Sende mail an server...&quot;);

/*end the mail*/
sendMSG(mailStream, mailData + &quot;\n.\n&quot;);
</code></pre>
<p>hier kann ich das mail nicht mit einem punkt beenden... woran liegt das?</p>
<p>welche bytes muesste ich dem server senden damit er die maileingabe beendet?</p>
<p>danke mfg --linuxuser--</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/154680/mailprogramm-mail-beenden</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Jul 2026 08:44:41 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/154680.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 29 Jul 2006 13:35:18 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Mailprogramm(mail beenden) on Sat, 29 Jul 2006 13:42:02 GMT]]></title><description><![CDATA[<p>hi!</p>
<p>ich bin gerade dabei ein mailprogramm in c# zu schreiben und es funktioniert soweit auch schon ganz gut ich kann mich schon anmelden am smtp server usw...</p>
<p>ich stehe nur vor einem problem:</p>
<pre><code>mailData =  &quot;From: &quot; + this.username + &quot;&lt;&quot; + this.fromEmail + &quot;&gt;\n&quot;;
mailData += &quot;To: &quot;;
for(int i = 0; i &lt; acceptors.Length; i++){
   mailData += acceptors[i] + &quot;, &quot;;
}
mailData += &quot;\n&quot;;
mailData += &quot;Subject: &quot; + subject;

mailData += mail;

Console.WriteLine(&quot;Sende mail an server...&quot;);

/*end the mail*/
sendMSG(mailStream, mailData + &quot;\n.\n&quot;);
</code></pre>
<p>hier kann ich das mail nicht mit einem punkt beenden... woran liegt das?</p>
<p>welche bytes muesste ich dem server senden damit er die maileingabe beendet?</p>
<p>danke mfg --linuxuser--</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1106680</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1106680</guid><dc:creator><![CDATA[--linuxuser--]]></dc:creator><pubDate>Sat, 29 Jul 2006 13:42:02 GMT</pubDate></item><item><title><![CDATA[Reply to Mailprogramm(mail beenden) on Sat, 29 Jul 2006 14:28:10 GMT]]></title><description><![CDATA[<p>\r\n ist der Zeilentrenner bei SMTP (und vielen anderen Netzwerkprotokollen)</p>
<p>Schau dir mal die SMTP-RFC an, da sollte das stehen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1106703</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1106703</guid><dc:creator><![CDATA[rüdiger]]></dc:creator><pubDate>Sat, 29 Jul 2006 14:28:10 GMT</pubDate></item><item><title><![CDATA[Reply to Mailprogramm(mail beenden) on Sat, 29 Jul 2006 15:19:17 GMT]]></title><description><![CDATA[<p>habs schon hinbekommen danke!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1106742</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1106742</guid><dc:creator><![CDATA[--linuxuser--]]></dc:creator><pubDate>Sat, 29 Jul 2006 15:19:17 GMT</pubDate></item></channel></rss>