Home All Groups Group Topic Archive Search About
Author
9 Jan 2006 5:43 AM
Adriano
Hello,

I'm using VS.NET 2003, can anyone please send me a code for sending emails/

thanks in advance!
Adriano

Author
9 Jan 2006 8:30 AM
Cor Ligthert [MVP]
Adriano,

You can start reading here.

http://www.systemwebmail.net/

I hope this helps,

Cor
Author
9 Jan 2006 8:35 AM
Pieter
Public Sub ShowMail(ByVal strTo As String, Optional ByVal strSubject As
String = "", Optional ByVal strMessage As String = "")
        Dim Appl As Object
        Dim out As Object
        Try
            Appl = CreateObject("Outlook.Application")
            out = Appl.CreateItem(0)
            With out
                .Subject = strSubject
                .To = strTo
                .Body = strMessage

                'Send it!
                '.Send()
                'Open it!
                .Display()
            End With
        Catch ex As Exception
            ErrorMessage(ex)
        End Try
    End Sub

Show quoteHide quote
"Adriano" <adri***@mail.ru> wrote in message
news:e0aaa%23NFGHA.516@TK2MSFTNGP15.phx.gbl...
> Hello,
>
> I'm using VS.NET 2003, can anyone please send me a code for sending
> emails/
>
> thanks in advance!
> Adriano
>
Author
9 Jan 2006 11:12 AM
Herfried K. Wagner [MVP]
"Adriano" <adri***@mail.ru> schrieb:
> I'm using VS.NET 2003, can anyone please send me a code for sending
> emails/

Sending and receiving email
<URL:http://dotnet.mvps.org/dotnet/faqs/?id=email&lang=en>

--
M S   Herfried K. Wagner
M V P  <URL:http://dotnet.mvps.org/>
V B   <URL:http://classicvb.org/petition/>
Author
9 Jan 2006 3:55 PM
Carlos J. Quintero [VB MVP]
Hi Adriano,

If you want to use SMTP directly then see:

http://www.systemwebmail.net/faq/2.1.aspx

If you want to automate Outlook post again.

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio 2005, Visual Studio .NET,
VB6, VB5 and VBA
You can code, design and document much faster in VB.NET, C#, C++ or VJ#
Free resources for add-in developers:
http://www.mztools.com

Show quoteHide quote
"Adriano" <adri***@mail.ru> escribió en el mensaje
news:e0aaa%23NFGHA.516@TK2MSFTNGP15.phx.gbl...
> Hello,
>
> I'm using VS.NET 2003, can anyone please send me a code for sending
> emails/
>
> thanks in advance!
> Adriano
>