Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>there are several ways to do that you could disable the popup like @DJ KRAZE described </p> <p>or you could send a message via smtp, if thats possible in your environment see this: <a href="http://msdn.microsoft.com/en-us/library/system.net.mail.smtpclient.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.net.mail.smtpclient.aspx</a></p> <p>then you could use the "redemption library" i've used it and there will be no messages, because redemption suppresses them (or works around them) but the library is used via com, thats not that comfortable.. although you have to pay for that: <a href="http://www.dimastr.com/redemption/home.htm" rel="nofollow">http://www.dimastr.com/redemption/home.htm</a></p> <p>the thir alternative is using the managed Exchange Web Services <a href="http://www.microsoft.com/download/en/details.aspx?id=13480" rel="nofollow">http://www.microsoft.com/download/en/details.aspx?id=13480</a> this is pretty straight forward and fun to use. you can get that via NuGet as well. :)</p> <p>EDIT:</p> <p>i forgot to mention, that Exchange Web Services are only available on Exchange 2007 SP1 or higher. and this is what it looks like to send a message (after connect to the server)</p> <pre><code>EmailMessage message = new EmailMessage(service); message.Subject = "Hello from the EWS Managed API"; message.Body = "Now that's easy!"; message.ToRecipients.Add("someone@fabrikam.com"); message.Save(); </code></pre> <p>look here for an introduction: <a href="http://msdn.microsoft.com/en-us/library/dd637749(v=exchg.80).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/dd637749(v=exchg.80).aspx</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload