<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Outlook &amp; Ansender</title>
    <link>http://forum.geizhals.at/feed.jsp?id=893177</link>
    <description>Geizhals-Forum</description>
    <item>
      <title>Das hat jetzt gedauert ... sorry</title>
      <link>http://forum.geizhals.at/t893177,7880716.html#7880716</link>
      <description>Sorry dass das jetzt so lange gedauert hat - falls du noch interessiert bist, hier ist der Code.&lt;br&gt;Das macht nicht GENAU das was du willst, aber du kannst das sicher rauslesen. Anwendungsfall (bei mir) ist, dass man in einer gemeinsam genutzten Outlook-Mailbox eine Mail markiert, einen speziellen "reply" Button klickt (hinter dem das Makro liegt) und dann das reply-Mail displayed kriegt in dem man seine Antwort schreiben kann. Einfach auf deine Beduerfnisse modifizieren. ABC123 ist jener String, der im Exchange/AD als "Envelope Sender" hinterlegt ist (nicht die Mailadresse; der String hat kein @).&amp;nbsp;&amp;nbsp;Aus Datenschutzgruenden ist der Abteilungsname als ABC123 maskiert.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=code&gt;&lt;pre&gt;&#xD;
Sub ReplyAsABC()&#xD;
&#xD;
    'declare variables&#xD;
    Dim objReplyMail As MailItem&#xD;
    Dim lCount As Long&#xD;
&#xD;
    'check if we have only 1 mailitem selected (not multiple, not meeting items)&#xD;
    If Not (Application.ActiveExplorer.Selection.Count = 1 And TypeName(Application.ActiveExplorer.Selection.Item(1)) = "MailItem") Then&#xD;
        Call MsgBox("Not a single mail item selected!", vbCritical + vbOKOnly, "Wrong selection")&#xD;
        End&#xD;
    End If&#xD;
&#xD;
    'get currently selected mail &#xD;
    Dim objMailItem As MailItem&#xD;
    'create a an reply-mail of the currently selected mail&#xD;
    Set objMailItem = Application.ActiveExplorer.Selection.Item(1).ReplyAll&#xD;
&#xD;
    'create reply-mail by copying the created replymail&#xD;
    'if you don't create a copy, you can't set the .SendUsingAccount property (it's read only)&#xD;
    'this is FU*** NOWHERE DOCUMENTED - this took me days to find out!!&#xD;
    Set objReplyMail = objMailItem.Copy&#xD;
&#xD;
    'FINALLY - it's apparenlty necessary to set all those properties&#xD;
    'set sender to active-directory entry for ABC123&#xD;
    objReplyMail.Sender = Application.Session.AddressLists("Global Address List").AddressEntries("ABC123")&#xD;
    'make sure correct (own) account is used for sending - to make show up in YOUR 'sent' folder&#xD;
    objReplyMail.SendUsingAccount = Application.Session.accounts(1)&#xD;
    'set onbehalf mail address&#xD;
    'objReplyMail.SentOnBehalfOfName = "ABC123"&#xD;
&#xD;
    'check each recipient if it is ABC123, if so, remove it&#xD;
    For lCount = 1 To objReplyMail.Recipients.Count&#xD;
        If objReplyMail.Recipients(lCount).Name = "ABC123" Then&#xD;
            Call objReplyMail.Recipients.Remove(lCount)&#xD;
            'yeah i know this is bad style :/&#xD;
            Exit For&#xD;
        End If&#xD;
    Next&#xD;
&#xD;
    'display reply mail&#xD;
    Call objReplyMail.Display&#xD;
&#xD;
End Sub&#xD;
&#xD;
&lt;/pre&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;PS: Die Kommentare habe ich weder fuer GH extra geschrieben noch editiert &lt;img src="smile.gif" width="16" height="19" align="absmiddle" alt=":-)"/&gt;&lt;br&gt;PPS: Wieso ist dein Nick eigentl "Gukerl" und nicht "Gurkerl"? &lt;img src="teeth.gif" width="16" height="19" align="absmiddle" alt="|-D"/&gt;&lt;br/&gt;</description>
      <pubDate>Fri, 02 Feb 2018 17:12:09 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7880716.html#7880716</guid>
      <dc:creator>lsr2</dc:creator>
      <dc:date>2018-02-02T17:12:09Z</dc:date>
    </item>
    <item>
      <title>Das hat jetzt gedauert ... sorry</title>
      <link>http://forum.geizhals.at/t893177,7880710.html#7880710</link>
      <description>Sorry dass das jetzt so lange gedauert hat - falls du noch interessiert bist, hier ist der Code.&lt;br&gt;Das macht nicht GENAU das was du willst, aber du kannst das sicher rauslesen. Anwendungsfall (bei mir) ist, dass man in einer gemeinsam genutzten Mailbox eine Mail markiert, einen speziellen "reply" Button klickt (hinter dem das Makro liegt) und dann das reply-Mail displayed kriegt in dem man seine Antwort schreiben kann. Einfach auf deine Beduerfnisse modifizieren. ABC123 ist jener String, der im Exchange/AD als "Envelope Sender" hinterlegt ist (nicht die Mailadresse; der String hat kein @).&amp;nbsp;&amp;nbsp;Aus Datenschutzgruenden ist der Abteilungsname als ABC123 maskiert.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=code&gt;&lt;pre&gt;&#xD;
Sub ReplyAsABC()&#xD;
&#xD;
    'declare variables&#xD;
    Dim objReplyMail As MailItem&#xD;
    Dim lCount As Long&#xD;
&#xD;
    'check if we have only 1 mailitem selected (not multiple, not meeting items)&#xD;
    If Not (Application.ActiveExplorer.Selection.Count = 1 And TypeName(Application.ActiveExplorer.Selection.Item(1)) = "MailItem") Then&#xD;
        Call MsgBox("Not a single mail item selected!", vbCritical + vbOKOnly, "Wrong selection")&#xD;
        End&#xD;
    End If&#xD;
&#xD;
    'get currently selected mail&#xD;
    Dim objMailItem As MailItem&#xD;
    'create a an reply-mail of the currently selected mail&#xD;
    Set objMailItem = Application.ActiveExplorer.Selection.Item(1).ReplyAll&#xD;
&#xD;
    'create reply-mail by copying the created replymail&#xD;
    'if you don't create a copy, you can't set the .SendUsingAccount property (it's read only)&#xD;
    'this is FU*** NOWHERE DOCUMENTED - this took me days to find out!!&#xD;
    Set objReplyMail = objMailItem.Copy&#xD;
&#xD;
    'FINALLY - it's apparenlty necessary to set all those properties&#xD;
    'set sender to active-directory entry for LSC ZH&#xD;
    objReplyMail.Sender = Application.Session.AddressLists("Global Address List").AddressEntries("ABC123")&#xD;
    'make sure correct (own) account is used for sending - to make show up in YOUR 'sent' folder&#xD;
    objReplyMail.SendUsingAccount = Application.Session.accounts(1)&#xD;
    'set onbehalf mail address&#xD;
    'objReplyMail.SentOnBehalfOfName = "ABC123"&#xD;
&#xD;
    'check each recipient if it is ABC123, if so, remove it&#xD;
    For lCount = 1 To objReplyMail.Recipients.Count&#xD;
        If objReplyMail.Recipients(lCount).Name = "ABC123" Then&#xD;
            Call objReplyMail.Recipients.Remove(lCount)&#xD;
            'yeah i know this is bad style :/&#xD;
            Exit For&#xD;
        End If&#xD;
    Next&#xD;
&#xD;
    'display reply mail&#xD;
    Call objReplyMail.Display&#xD;
&#xD;
End Sub&#xD;
&#xD;
&lt;/pre&gt;&lt;/div&gt;&lt;br/&gt;</description>
      <pubDate>Fri, 02 Feb 2018 17:12:09 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7880710.html#7880710</guid>
      <dc:creator>lsr2</dc:creator>
      <dc:date>2018-02-02T17:12:09Z</dc:date>
    </item>
    <item>
      <title>Das hat jetzt gedauert ... sorry</title>
      <link>http://forum.geizhals.at/t893177,7880715.html#7880715</link>
      <description>Sorry dass das jetzt so lange gedauert hat - falls du noch interessiert bist, hier ist der Code.&lt;br&gt;Das macht nicht GENAU das was du willst, aber du kannst das sicher rauslesen. Anwendungsfall (bei mir) ist, dass man in einer gemeinsam genutzten Mailbox eine Mail markiert, einen speziellen "reply" Button klickt (hinter dem das Makro liegt) und dann das reply-Mail displayed kriegt in dem man seine Antwort schreiben kann. Einfach auf deine Beduerfnisse modifizieren. ABC123 ist jener String, der im Exchange/AD als "Envelope Sender" hinterlegt ist (nicht die Mailadresse; der String hat kein @).&amp;nbsp;&amp;nbsp;Aus Datenschutzgruenden ist der Abteilungsname als ABC123 maskiert.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=code&gt;&lt;pre&gt;&#xD;
Sub ReplyAsABC()&#xD;
&#xD;
    'declare variables&#xD;
    Dim objReplyMail As MailItem&#xD;
    Dim lCount As Long&#xD;
&#xD;
    'check if we have only 1 mailitem selected (not multiple, not meeting items)&#xD;
    If Not (Application.ActiveExplorer.Selection.Count = 1 And TypeName(Application.ActiveExplorer.Selection.Item(1)) = "MailItem") Then&#xD;
        Call MsgBox("Not a single mail item selected!", vbCritical + vbOKOnly, "Wrong selection")&#xD;
        End&#xD;
    End If&#xD;
&#xD;
    'get currently selected mail &#xD;
    Dim objMailItem As MailItem&#xD;
    'create a an reply-mail of the currently selected mail&#xD;
    Set objMailItem = Application.ActiveExplorer.Selection.Item(1).ReplyAll&#xD;
&#xD;
    'create reply-mail by copying the created replymail&#xD;
    'if you don't create a copy, you can't set the .SendUsingAccount property (it's read only)&#xD;
    'this is FU*** NOWHERE DOCUMENTED - this took me days to find out!!&#xD;
    Set objReplyMail = objMailItem.Copy&#xD;
&#xD;
    'FINALLY - it's apparenlty necessary to set all those properties&#xD;
    'set sender to active-directory entry for ABC123&#xD;
    objReplyMail.Sender = Application.Session.AddressLists("Global Address List").AddressEntries("ABC123")&#xD;
    'make sure correct (own) account is used for sending - to make show up in YOUR 'sent' folder&#xD;
    objReplyMail.SendUsingAccount = Application.Session.accounts(1)&#xD;
    'set onbehalf mail address&#xD;
    'objReplyMail.SentOnBehalfOfName = "ABC123"&#xD;
&#xD;
    'check each recipient if it is ABC123, if so, remove it&#xD;
    For lCount = 1 To objReplyMail.Recipients.Count&#xD;
        If objReplyMail.Recipients(lCount).Name = "ABC123" Then&#xD;
            Call objReplyMail.Recipients.Remove(lCount)&#xD;
            'yeah i know this is bad style :/&#xD;
            Exit For&#xD;
        End If&#xD;
    Next&#xD;
&#xD;
    'display reply mail&#xD;
    Call objReplyMail.Display&#xD;
&#xD;
End Sub&#xD;
&#xD;
&lt;/pre&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;PS: Die Kommentare habe ich weder fuer GH extra geschrieben noch editiert &lt;img src="smile.gif" width="16" height="19" align="absmiddle" alt=":-)"/&gt;&lt;br&gt;PPS: Wieso ist dein Nick eigentl "Gukerl" und nicht "Gurkerl"? &lt;img src="teeth.gif" width="16" height="19" align="absmiddle" alt="|-D"/&gt;&lt;br/&gt;</description>
      <pubDate>Fri, 02 Feb 2018 17:12:09 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7880715.html#7880715</guid>
      <dc:creator>lsr2</dc:creator>
      <dc:date>2018-02-02T17:12:09Z</dc:date>
    </item>
    <item>
      <title>Das hat jetzt gedauert ... sorry</title>
      <link>http://forum.geizhals.at/t893177,7880712.html#7880712</link>
      <description>Sorry dass das jetzt so lange gedauert hat - falls du noch interessiert bist, hier ist der Code.&lt;br&gt;Das macht nicht GENAU das was du willst, aber du kannst das sicher rauslesen. Anwendungsfall (bei mir) ist, dass man in einer gemeinsam genutzten Mailbox eine Mail markiert, einen speziellen "reply" Button klickt (hinter dem das Makro liegt) und dann das reply-Mail displayed kriegt in dem man seine Antwort schreiben kann. Einfach auf deine Beduerfnisse modifizieren. ABC123 ist jener String, der im Exchange/AD als "Envelope Sender" hinterlegt ist (nicht die Mailadresse; der String hat kein @).&amp;nbsp;&amp;nbsp;Aus Datenschutzgruenden ist der Abteilungsname als ABC123 maskiert.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=code&gt;&lt;pre&gt;&#xD;
Sub ReplyAsABC()&#xD;
&#xD;
    'declare variables&#xD;
    Dim objReplyMail As MailItem&#xD;
    Dim lCount As Long&#xD;
&#xD;
    'check if we have only 1 mailitem selected (not multiple, not meeting items)&#xD;
    If Not (Application.ActiveExplorer.Selection.Count = 1 And TypeName(Application.ActiveExplorer.Selection.Item(1)) = "MailItem") Then&#xD;
        Call MsgBox("Not a single mail item selected!", vbCritical + vbOKOnly, "Wrong selection")&#xD;
        End&#xD;
    End If&#xD;
&#xD;
    'get currently selected mail&#xD;
    Dim objMailItem As MailItem&#xD;
    'create a an reply-mail of the currently selected mail&#xD;
    Set objMailItem = Application.ActiveExplorer.Selection.Item(1).ReplyAll&#xD;
&#xD;
    'create reply-mail by copying the created replymail&#xD;
    'if you don't create a copy, you can't set the .SendUsingAccount property (it's read only)&#xD;
    'this is FU*** NOWHERE DOCUMENTED - this took me days to find out!!&#xD;
    Set objReplyMail = objMailItem.Copy&#xD;
&#xD;
    'FINALLY - it's apparenlty necessary to set all those properties&#xD;
    'set sender to active-directory entry for LSC ZH&#xD;
    objReplyMail.Sender = Application.Session.AddressLists("Global Address List").AddressEntries("ABC123")&#xD;
    'make sure correct (own) account is used for sending - to make show up in YOUR 'sent' folder&#xD;
    objReplyMail.SendUsingAccount = Application.Session.accounts(1)&#xD;
    'set onbehalf mail address&#xD;
    'objReplyMail.SentOnBehalfOfName = "ABC123"&#xD;
&#xD;
    'check each recipient if it is ABC123, if so, remove it&#xD;
    For lCount = 1 To objReplyMail.Recipients.Count&#xD;
        If objReplyMail.Recipients(lCount).Name = "ABC123" Then&#xD;
            Call objReplyMail.Recipients.Remove(lCount)&#xD;
            'yeah i know this is bad style :/&#xD;
            Exit For&#xD;
        End If&#xD;
    Next&#xD;
&#xD;
    'display reply mail&#xD;
    Call objReplyMail.Display&#xD;
&#xD;
End Sub&#xD;
&#xD;
&lt;/pre&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;PS: Die Kommentare habe ich weder fuer GH extra geschrieben noch editiert &lt;img src="smile.gif" width="16" height="19" align="absmiddle" alt=":-)"/&gt;&lt;br/&gt;</description>
      <pubDate>Fri, 02 Feb 2018 17:12:09 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7880712.html#7880712</guid>
      <dc:creator>lsr2</dc:creator>
      <dc:date>2018-02-02T17:12:09Z</dc:date>
    </item>
    <item>
      <title>Das hat jetzt gedauert ... sorry</title>
      <link>http://forum.geizhals.at/t893177,7880713.html#7880713</link>
      <description>Sorry dass das jetzt so lange gedauert hat - falls du noch interessiert bist, hier ist der Code.&lt;br&gt;Das macht nicht GENAU das was du willst, aber du kannst das sicher rauslesen. Anwendungsfall (bei mir) ist, dass man in einer gemeinsam genutzten Mailbox eine Mail markiert, einen speziellen "reply" Button klickt (hinter dem das Makro liegt) und dann das reply-Mail displayed kriegt in dem man seine Antwort schreiben kann. Einfach auf deine Beduerfnisse modifizieren. ABC123 ist jener String, der im Exchange/AD als "Envelope Sender" hinterlegt ist (nicht die Mailadresse; der String hat kein @).&amp;nbsp;&amp;nbsp;Aus Datenschutzgruenden ist der Abteilungsname als ABC123 maskiert.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=code&gt;&lt;pre&gt;&#xD;
Sub ReplyAsABC()&#xD;
&#xD;
    'declare variables&#xD;
    Dim objReplyMail As MailItem&#xD;
    Dim lCount As Long&#xD;
&#xD;
    'check if we have only 1 mailitem selected (not multiple, not meeting items)&#xD;
    If Not (Application.ActiveExplorer.Selection.Count = 1 And TypeName(Application.ActiveExplorer.Selection.Item(1)) = "MailItem") Then&#xD;
        Call MsgBox("Not a single mail item selected!", vbCritical + vbOKOnly, "Wrong selection")&#xD;
        End&#xD;
    End If&#xD;
&#xD;
    'get currently selected mail&#xD;
    Dim objMailItem As MailItem&#xD;
    'create a an reply-mail of the currently selected mail&#xD;
    Set objMailItem = Application.ActiveExplorer.Selection.Item(1).ReplyAll&#xD;
&#xD;
    'create reply-mail by copying the created replymail&#xD;
    'if you don't create a copy, you can't set the .SendUsingAccount property (it's read only)&#xD;
    'this is FU*** NOWHERE DOCUMENTED - this took me days to find out!!&#xD;
    Set objReplyMail = objMailItem.Copy&#xD;
&#xD;
    'FINALLY - it's apparenlty necessary to set all those properties&#xD;
    'set sender to active-directory entry for ABC123&#xD;
    objReplyMail.Sender = Application.Session.AddressLists("Global Address List").AddressEntries("ABC123")&#xD;
    'make sure correct (own) account is used for sending - to make show up in YOUR 'sent' folder&#xD;
    objReplyMail.SendUsingAccount = Application.Session.accounts(1)&#xD;
    'set onbehalf mail address&#xD;
    'objReplyMail.SentOnBehalfOfName = "ABC123"&#xD;
&#xD;
    'check each recipient if it is ABC123, if so, remove it&#xD;
    For lCount = 1 To objReplyMail.Recipients.Count&#xD;
        If objReplyMail.Recipients(lCount).Name = "ABC123" Then&#xD;
            Call objReplyMail.Recipients.Remove(lCount)&#xD;
            'yeah i know this is bad style :/&#xD;
            Exit For&#xD;
        End If&#xD;
    Next&#xD;
&#xD;
    'display reply mail&#xD;
    Call objReplyMail.Display&#xD;
&#xD;
End Sub&#xD;
&#xD;
&lt;/pre&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;PS: Die Kommentare habe ich weder fuer GH extra geschrieben noch editiert &lt;img src="smile.gif" width="16" height="19" align="absmiddle" alt=":-)"/&gt;&lt;br/&gt;</description>
      <pubDate>Fri, 02 Feb 2018 17:12:09 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7880713.html#7880713</guid>
      <dc:creator>lsr2</dc:creator>
      <dc:date>2018-02-02T17:12:09Z</dc:date>
    </item>
    <item>
      <title>Das hat jetzt gedauert ... sorry</title>
      <link>http://forum.geizhals.at/t893177,7880714.html#7880714</link>
      <description>Sorry dass das jetzt so lange gedauert hat - falls du noch interessiert bist, hier ist der Code.&lt;br&gt;Das macht nicht GENAU das was du willst, aber du kannst das sicher rauslesen. Anwendungsfall (bei mir) ist, dass man in einer gemeinsam genutzten Mailbox eine Mail markiert, einen speziellen "reply" Button klickt (hinter dem das Makro liegt) und dann das reply-Mail displayed kriegt in dem man seine Antwort schreiben kann. Einfach auf deine Beduerfnisse modifizieren. ABC123 ist jener String, der im Exchange/AD als "Envelope Sender" hinterlegt ist (nicht die Mailadresse; der String hat kein @).&amp;nbsp;&amp;nbsp;Aus Datenschutzgruenden ist der Abteilungsname als ABC123 maskiert.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=code&gt;&lt;pre&gt;&#xD;
Sub ReplyAsABC()&#xD;
&#xD;
    'declare variables&#xD;
    Dim objReplyMail As MailItem&#xD;
    Dim lCount As Long&#xD;
&#xD;
    'check if we have only 1 mailitem selected (not multiple, not meeting items)&#xD;
    If Not (Application.ActiveExplorer.Selection.Count = 1 And TypeName(Application.ActiveExplorer.Selection.Item(1)) = "MailItem") Then&#xD;
        Call MsgBox("Not a single mail item selected!", vbCritical + vbOKOnly, "Wrong selection")&#xD;
        End&#xD;
    End If&#xD;
&#xD;
    'get currently selected mail &#xD;
    Dim objMailItem As MailItem&#xD;
    'create a an reply-mail of the currently selected mail&#xD;
    Set objMailItem = Application.ActiveExplorer.Selection.Item(1).ReplyAll&#xD;
&#xD;
    'create reply-mail by copying the created replymail&#xD;
    'if you don't create a copy, you can't set the .SendUsingAccount property (it's read only)&#xD;
    'this is FU*** NOWHERE DOCUMENTED - this took me days to find out!!&#xD;
    Set objReplyMail = objMailItem.Copy&#xD;
&#xD;
    'FINALLY - it's apparenlty necessary to set all those properties&#xD;
    'set sender to active-directory entry for ABC123&#xD;
    objReplyMail.Sender = Application.Session.AddressLists("Global Address List").AddressEntries("ABC123")&#xD;
    'make sure correct (own) account is used for sending - to make show up in YOUR 'sent' folder&#xD;
    objReplyMail.SendUsingAccount = Application.Session.accounts(1)&#xD;
    'set onbehalf mail address&#xD;
    'objReplyMail.SentOnBehalfOfName = "ABC123"&#xD;
&#xD;
    'check each recipient if it is ABC123, if so, remove it&#xD;
    For lCount = 1 To objReplyMail.Recipients.Count&#xD;
        If objReplyMail.Recipients(lCount).Name = "ABC123" Then&#xD;
            Call objReplyMail.Recipients.Remove(lCount)&#xD;
            'yeah i know this is bad style :/&#xD;
            Exit For&#xD;
        End If&#xD;
    Next&#xD;
&#xD;
    'display reply mail&#xD;
    Call objReplyMail.Display&#xD;
&#xD;
End Sub&#xD;
&#xD;
&lt;/pre&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;PS: Die Kommentare habe ich weder fuer GH extra geschrieben noch editiert &lt;img src="smile.gif" width="16" height="19" align="absmiddle" alt=":-)"/&gt;&lt;br/&gt;</description>
      <pubDate>Fri, 02 Feb 2018 17:12:09 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7880714.html#7880714</guid>
      <dc:creator>lsr2</dc:creator>
      <dc:date>2018-02-02T17:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: Outlook &amp; Ansender</title>
      <link>http://forum.geizhals.at/t893177,7876860.html#7876860</link>
      <description>Gelöst!&lt;br&gt;&lt;br&gt;Nach etlichen Telefonten mit der IT konne ich nun, mit Euren Tipps, das Problem lösen!&lt;br&gt;&lt;br&gt;DANKE Euch allen &lt;img src="smile.gif" width="16" height="19" align="absmiddle" alt=":)"/&gt;&lt;br/&gt;</description>
      <pubDate>Thu, 25 Jan 2018 10:13:30 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7876860.html#7876860</guid>
      <dc:creator>Gukerl</dc:creator>
      <dc:date>2018-01-25T10:13:30Z</dc:date>
    </item>
    <item>
      <title>Re(2): Outlook &amp; Ansender</title>
      <link>http://forum.geizhals.at/t893177,7876590.html#7876590</link>
      <description>Das wäre ein SUPERHIT!!!!&lt;br&gt;&lt;br&gt;DANKE!!!&lt;br/&gt;</description>
      <pubDate>Wed, 24 Jan 2018 16:08:39 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7876590.html#7876590</guid>
      <dc:creator>Gukerl</dc:creator>
      <dc:date>2018-01-24T16:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Outlook &amp; Ansender</title>
      <link>http://forum.geizhals.at/t893177,7875890.html#7875890</link>
      <description>Das geht - ich hab dafuer VBA Code geschrieben (der ist aber nicht auf dem Laptop auf dem ich gerade arbeite). Wenn du bist morgen/uebermorgen warten kannst, kann ich den posten.&lt;br&gt;&lt;br&gt;&lt;br/&gt;</description>
      <pubDate>Tue, 23 Jan 2018 16:46:38 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7875890.html#7875890</guid>
      <dc:creator>lsr2</dc:creator>
      <dc:date>2018-01-23T16:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Outlook &amp; Ansender</title>
      <link>http://forum.geizhals.at/t893177,7875788.html#7875788</link>
      <description>Wie schon geschrieben gehts nur wenn das gewünschte Absende-Mailkonto als Hauptaccount eingerichtet wird.&lt;br&gt;Zuerst Outlook beenden und dann lege dir dazu ein neues Profil in den Outlook-Maileinstellungen an:&lt;br&gt;&lt;a href="https://support.office.com/de-de/article/erstellen-eines-outlook-profils-f544c1ba-3352-4b3b-be0b-8d42a540459d" rel="noopener" target="_blank"&gt;https:/&lt;wbr/&gt;/&lt;wbr/&gt;support.office.com/&lt;wbr/&gt;de-de/&lt;wbr/&gt;article/&lt;wbr/&gt;erstellen-eines-outlook-profils-f544c1ba-3352-4b3b-be0b-8d42a540459d&lt;/a&gt; &lt;br&gt;oder besser: kopiere dir dein vorhandenes Profil unter einem neuen Profilnamen.&lt;br&gt;Und markiere dort, dass beim Outlook-Start das Profil gewählt werden kann.&lt;br&gt;&lt;br&gt;Dann kannst du Outlook mit dem neuen Profil starten, dort den gewünschten Absende-Mailaccount als Standard definieren (alternativ die anderen Mailaccounts rauslöschen), und deine generierten Emails sollten dann mit den richtigen Absender gesendet werden.&lt;br&gt;&lt;br&gt;Dann Outlook beenden und mit dem alten Profil starten, und du hast deine gewohnten Einstellungen. &lt;br/&gt;</description>
      <pubDate>Tue, 23 Jan 2018 14:37:43 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7875788.html#7875788</guid>
      <dc:creator>Maximus</dc:creator>
      <dc:date>2018-01-23T14:37:43Z</dc:date>
    </item>
    <item>
      <title>Re(5): Outlook &amp; Ansender</title>
      <link>http://forum.geizhals.at/t893177,7875722.html#7875722</link>
      <description>Wenn die Einstellungen nicht von der IT gesperrt sind, kannst du es selbst.&lt;br/&gt;</description>
      <pubDate>Tue, 23 Jan 2018 12:16:54 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7875722.html#7875722</guid>
      <dc:creator>Flo061180</dc:creator>
      <dc:date>2018-01-23T12:16:54Z</dc:date>
    </item>
    <item>
      <title>Re(4): Outlook &amp; Ansender</title>
      <link>http://forum.geizhals.at/t893177,7875665.html#7875665</link>
      <description>Ich hab's schon verstanden &lt;img src="smile.gif" width="16" height="19" align="absmiddle" alt=":)"/&gt;&lt;br&gt;&lt;br&gt;Kann ich das selber machen oder brauche ich dafür die IT. Bei letzterem kann ich die 900Mails manuell raus schicken, da bin ich x-mal schneller &lt;img src="zwinker.gif" width="16" height="19" align="absmiddle" alt=";-)"/&gt;&lt;br/&gt;</description>
      <pubDate>Tue, 23 Jan 2018 10:26:50 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7875665.html#7875665</guid>
      <dc:creator>Gukerl</dc:creator>
      <dc:date>2018-01-23T10:26:50Z</dc:date>
    </item>
    <item>
      <title>Re(3): Outlook &amp; Ansender</title>
      <link>http://forum.geizhals.at/t893177,7875657.html#7875657</link>
      <description>Deshalb war ja mein Vorschlag, die Kontoeinstellungen, in deinem konkreten Fall dein Konto "Ich", temporär zu ändern. Dann werden die 900 Mails automatisch mit den geänderten Absenderdaten verschickt.&lt;br/&gt;</description>
      <pubDate>Tue, 23 Jan 2018 10:03:21 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7875657.html#7875657</guid>
      <dc:creator>Flo061180</dc:creator>
      <dc:date>2018-01-23T10:03:21Z</dc:date>
    </item>
    <item>
      <title>Re(2): Outlook &amp; Ansender</title>
      <link>http://forum.geizhals.at/t893177,7875656.html#7875656</link>
      <description>Leider bin ich einer von 10.000 Mitarbeitern, aber "Inhaber" von 5 Exchange Konten, die ich monitore, leider ist das mit der IT nicht so einfach. Die Mails werden von der externen Software immer in das Hauptkonto geschrieben. jetzt liegen 900 Mails bei mir in Draft, als Absenderkonto "Ich", und genau das möchte ich ändern, am Besten mit einem Rutsch. &lt;br&gt;Die Mails in den Draft Ordner des anderen Kontos zu schieben bringt nichts, da sich das Absenderkonto nicht ändert.&lt;br/&gt;</description>
      <pubDate>Tue, 23 Jan 2018 09:59:05 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7875656.html#7875656</guid>
      <dc:creator>Gukerl</dc:creator>
      <dc:date>2018-01-23T09:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Outlook &amp; Ansender</title>
      <link>http://forum.geizhals.at/t893177,7875634.html#7875634</link>
      <description>Die pragmatischste Lösung wäre wohl eine Änderung in den Kontoeinstellungen.&lt;br&gt;Nach dem Versand änderst du es dann wieder auf die ursprünglichen Accountdaten.&lt;br/&gt;</description>
      <pubDate>Tue, 23 Jan 2018 08:40:27 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7875634.html#7875634</guid>
      <dc:creator>Flo061180</dc:creator>
      <dc:date>2018-01-23T08:40:27Z</dc:date>
    </item>
    <item>
      <title>Outlook &amp; Ansender</title>
      <link>http://forum.geizhals.at/t893177,7875625.html#7875625</link>
      <description>Hallo Ihr!&lt;br&gt;&lt;br&gt;Ich muss für ein Software Update Lizenz-Mails an einige 100 Adressen schicken. Diese Mails werden automatisch in meinen Outlook-Draft Ordner erstellt und werden manuell verschickt.&lt;br&gt;Ich möchte jetzt aber nicht die Mails unter meinem Namen verschicken, sondern -&gt; Von: AndererAccount einsetzen.&lt;br&gt;&lt;br&gt;Händisch würde das ewig dauern. Kann man das irgendwie über VBS oder anders lösen? Wenn ja, wie klappt das?&lt;br&gt;&lt;br&gt;DANKE, Andi&lt;br/&gt;</description>
      <pubDate>Tue, 23 Jan 2018 08:09:52 GMT</pubDate>
      <guid>http://forum.geizhals.at/t893177,7875625.html#7875625</guid>
      <dc:creator>Gukerl</dc:creator>
      <dc:date>2018-01-23T08:09:52Z</dc:date>
    </item>
  </channel>
</rss>
