Apply a RELEVANT subject to your emails.

>From what I test, at least with ASP.NET, you give the Pickup folder write
permissions for your anonymous user (ASPNET or IUSR_MACHINE), and that's it.
Movement to other folders are handled by IIS SMTP itself.

sendmail.aspx
========================================
<%@ Page Language="VB" %>
<%@ Import Namespace="System.Web.Mail" %>
<script runat="server">

Sub btnSendmail (s as Object, e as EventArgs)
    Dim mailMessage As SmtpMail

    mailMessage.Send( _
        "[EMAIL PROTECTED]", "[EMAIL PROTECTED]", _
        "this must be subject", "this must be body")

    lblReport.Text = "Email has been sent."
End Sub

</script>
<html><head><title>sendmail.aspx</title></head>
<body>
<form runat="server">
<asp:Label id="lblReport" runat="server"/>
<p>
<asp:Button id="sendmail" onClick="btnSendmail" runat="server" text="Send an
Email"/>
</form>
</body>
</html>
========================================


Aaron Seet
CCNA
AspFriends Moderation Team
----- Original Message -----
From: "Mahaveer Saraswat" <[EMAIL PROTECTED]>
To: "IIS50 Discussions" <[EMAIL PROTECTED]>
Sent: Thursday, September 19, 2002 15:25
Subject: Re: IP Configuration rules for IIS5 and SSL certificate


> I will suggest you to send the mails in bulk and then check because it
> should not happend
>
> the way of deliever the smtp message are first your message reach at Quie
it
> self and then it transfer your message to pickup folder
>
> I suggest you to do one thing just stop the smtp services and try to send
> few mails if all the mails are going in quie then its okey otherwise it
will
> go in badmail folder, if it is going in badmail folder then please check
> your smtp route address
>
> Thanks
> Mahaveer saraswat
> (Engineer Systems)
> Net4india Ltd.
>
> http://www.net4india.com
>
>
>
> ----- Original Message -----
> From: "Damian Elder" <[EMAIL PROTECTED]>
> To: "IIS50 Discussions" <[EMAIL PROTECTED]>
> Sent: Tuesday, September 17, 2002 8:36 PM
> Subject: RE: IP Configuration rules for IIS5 and SSL certificate
>
>
> > IIS SMTP send emails to pick up folder is this correct?  Shouldn't they
> > go to the queue and then to onto the recipient.



---
You are currently subscribed to iis50 as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]

---------
Administrated by 15 Seconds : http://www.15Seconds.com
List Archives/Search : http://local.15Seconds.com/search
Subscription Information : http://www.15seconds.com/listserv.htm
Advertising Information: http://www.internet.com/mediakit/


Reply via email to