Hi.

I have used rental space and used web mail there in ASP, like;

Set Mail = Server.CreateObject("Some.MailSender")

Mail.Host = somerHost
Mail.From = fromAddress
-----
Mail.AddAddress bccAdr
Mail.AddBCC bccAdr
Mail.Subject = "Some matter" ' message subject
Mail.Body = "Something to someone"
-----
Mail.Send ' send message

Then can I use the same method in IIS's built-in mail server?

Thanks.


M.M.

Re: how can I use IIS mail object? by jeff

jeff
Wed Apr 06 14:20:04 CDT 2005

On Wed, 6 Apr 2005 09:27:24 +0900, "M.Miura" <mmiura@sysynt.com>
wrote:

>Hi.
>
>I have used rental space and used web mail there in ASP, like;
>
> Set Mail = Server.CreateObject("Some.MailSender")
>
> Mail.Host = somerHost
> Mail.From = fromAddress
> -----
> Mail.AddAddress bccAdr
> Mail.AddBCC bccAdr
> Mail.Subject = "Some matter" ' message subject
> Mail.Body = "Something to someone"
> -----
> Mail.Send ' send message
>
>Then can I use the same method in IIS's built-in mail server?

See:

http://www.aspfaq.com/show.asp?id=2026

Jeff