Send mail, Help me!! 
Author Message
 Send mail, Help me!!

I'm a VB 5.0 programmer, and i have a problem, i must send a e-mail in a
VB program but i don't found documentation, OCX, API, nothing.
Can anybody help me!!

--
Un saludo.



Tue, 07 Mar 2000 03:00:00 GMT  
 Send mail, Help me!!

Quote:

>I'm a VB 5.0 programmer, and i have a problem, i must send a e-mail in a
>VB program but i don't found documentation, OCX, API, nothing.
>Can anybody help me!!

>--
>Un saludo.


You have Microsoft Winsock Control in your VB5.
Just open rfc821.

You'll understand evrything. You can use 3 party OCX's. But it's absolutley not good idea.



Tue, 07 Mar 2000 03:00:00 GMT  
 Send mail, Help me!!

Marcos,

You can use our IDSMail component to send mail through any mail system
(SMTP/POP3, MAPI, VIM, MHS, and Banyan VINES) code like this:

Dim idsMail as Object
Set idsMail = CreateObject("IDSMailInterface.Server")
idsMail.ObjectKey = "ABC123"
idsMail.MailSystem =IDSM_SYS_SMTP_POP
idsMail.SMTPServer = "myprovider.com"
idsMail.NewMessage



idsMail.Subject = "Meeting Agenda"
idsMail.Message = "Here is the agenda for the weekly meeting."
idsMail.AddAttachment "C:\MEETINGS\AGENDA.DOC"
idsMail.Send

Info at http://www.intuitive-data.com

--
Regards,

Eric June
Intuitive Data Solutions

--------- We Make OLE Servers Intuitive --------------

Intuitive Data Solutions           fax: (408) 776-1267
Send/Rcv Email *EASILY* through SMTP/POP, VIM, MAPI,
MHS & VINES http://www.intuitive-data.com/idsmail.htm
------------------------------------------------------



Tue, 07 Mar 2000 03:00:00 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. send mail help me

2. Send Mail Without Leaving Message in Sent Mail

3. Help sending HTML mail in mail merge

4. !!! Help Sending mail via MS Access Event Help !!!!

5. Send mail to MS Mail instead of Outlook

6. Notification when a new e-mail is sent to any e-mail Outlook folder

7. hide e-mail addresses while sending e-mail

8. Specifying an e-mail address or Reply To address when sending mail

9. Sending an Outlook mail from my VBA-code doesn't close the mail windows

10. Sending mail in RTF whiteout using mail merge?

11. Send Simple E-Mail Message without E-Mail client

12. An app with an e-mail address in it, how to make it send e-mail

 

 
Powered by phpBB® Forum Software