Re: SmtpMail
From: MrMike (MrMike_at_discussions.microsoft.com)
Date: 12/22/04
- Next message: Steve C. Orr [MVP, MCSD]: "Re: upload file to Oracle DB"
- Previous message: Saravana: "Re: The viewstate is invalid for this page and might be corrupted"
- In reply to: Curt_C [MVP]: "Re: SmtpMail"
- Next in thread: Curt_C [MVP]: "Re: SmtpMail"
- Reply: Curt_C [MVP]: "Re: SmtpMail"
- Messages sorted by: [ date ] [ thread ]
Date: Wed, 22 Dec 2004 10:01:04 -0800
Curt_C, What folders exactly are you refering to? Where would these folders
be located? Thanks for your help!
"Curt_C [MVP]" wrote:
> the user that the site runs under needs access to the smtp folders
>
> --
> Curt Christianson
> Owner/Lead Developer, DF-Software
> Site: http://www.Darkfalz.com
> Blog: http://blog.Darkfalz.com
>
>
> "MrMike" <MrMike@discussions.microsoft.com> wrote in message
> news:415B23E2-D802-4474-93F6-A000D3A518DF@microsoft.com...
> > Hi. I have the following code which sends an e-mail from my asp.net
> > application. This works fine on my localhost, but when I run this from
> > the
> > server I get an "Access Denied" Message. What do I need to do to run this
> > successfully from my server? Thanks.
> >
> > Private Sub btnSend_Click(ByVal sender As System.Object, ByVal e As
> > System.EventArgs) Handles btnSend.Click
> >
> > Dim MsgFrom As String = "someone@abc.com"
> > Dim MsgTo As String = "someone@def.com"
> > Dim MsgBody As String = Me.txtBody.Text & " " &
> > Request.QueryString("SupportInfo")
> >
> > SmtpMail.Send(MsgFrom.Trim, MsgTo.Trim, Me.txtSubject.Text.Trim, _
> > MsgBody.Trim)
> >
> > End Sub
> >
> >
> > Error:
> > ASP.NET is not authorized to access the requested resource. Consider
> > granting access rights to the resource to the ASP.NET request identity.
> > ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5
> > or
> > Network Service on IIS 6) that is used if the application is not
> > impersonating. If the application is impersonating via <identity
> > impersonate="true"/>, the identity will be the anonymous user (typically
> > IUSR_MACHINENAME) or the authenticated request user.
>
>
>
- Next message: Steve C. Orr [MVP, MCSD]: "Re: upload file to Oracle DB"
- Previous message: Saravana: "Re: The viewstate is invalid for this page and might be corrupted"
- In reply to: Curt_C [MVP]: "Re: SmtpMail"
- Next in thread: Curt_C [MVP]: "Re: SmtpMail"
- Reply: Curt_C [MVP]: "Re: SmtpMail"
- Messages sorted by: [ date ] [ thread ]