Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

I have a piece of code as below.

--------------------------------------------------

Dim MailServer As String = "THOMAS" 'Local SMTP virtual svr

Dim ToEmail As String = "thomas@mydomain.com"

Dim ToName As String = "Thomas George"

Dim FromEmail As String = "test@mydomain.com"

Dim FromName As String = "Test"

Dim Subject As String = "Test Mail"

Dim Body As String = "Test Body"

Dim o_Client As System.Net.Mail.SmtpClient = New System.Net.Mail.SmtpClient(MailServer)

Dim o_FromAddress As System.Net.Mail.MailAddress = New System.Net.Mail.MailAddress(FromEmail, FromName)

Dim o_ToAddress As System.Net.Mail.MailAddress = New System.Net.Mail.MailAddress(ToEmail, ToName)

Dim o_Message As System.Net.Mail.MailMessage = New System.Net.Mail.MailMessage(o_FromAddress, o_ToAddress)

o_Message.Subject = Subject

o_Message.Body = Body

 

AddHandler o_Client.SendCompleted, AddressOf sendMail_SendCompleted

o_Client.DeliveryMethod = SmtpDeliveryMethod.PickupDirectoryFromIis

 

Try

o_Client.Send(o_Message)

 

Catch exc As Exception

 

End Try

--------------------------------------------------

 

The problem is nothing happening, no error returned.

Can anybody say what could be wrong.

 

thank you,

 

Thomas George

Posted

Thanks for the response.

 

The SMTP svr is configured and started.

 

Under inetpub\mailroot , Queue and Pickup folders are there.

I can see a mail message in Queue and nothing in Pickup folder.

Its staying in Queue for ever.

 

Thomas

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...