will pay for someone to get this to work 
Author Message
 will pay for someone to get this to work

K...here you go guys and gals that want to make a little money. I have a
database program that I use to keep up wiht my clients. I need the program
to put an email in my Outlook Express (not MS Outlook..this is the important
part) outbox to be sent next time I connect. I need it to automatically set
the email address, subject, and body of the message (as it will be used to
send email invoices). I tried some code like this that is supposed to work
from MS Outlook but I never got it to work.

Private Sub Command1_Click()
   Dim out As Object
   Set out = CreateObject("Outlook.Application")
   With out.CreateItem(olMailItem)

   .Subject = "whatever"
   .Body = "Text1.Text"
   .Send
End With
End Sub

this is just a rough account of the code..but you get the idea.
If you are interested in my proposition or need more informatoin, please

Thanks,
Andrew Sain



Sat, 31 Mar 2001 03:00:00 GMT  
 will pay for someone to get this to work
How much will you pay?

I don't think it would be hard to do it....(I think you could figure it
out!)...  But I would need $$$ because I don't have the time.

Quote:

>K...here you go guys and gals that want to make a little money. I have a
>database program that I use to keep up wiht my clients. I need the program
>to put an email in my Outlook Express (not MS Outlook..this is the
important
>part) outbox to be sent next time I connect. I need it to automatically set
>the email address, subject, and body of the message (as it will be used to
>send email invoices). I tried some code like this that is supposed to work
>from MS Outlook but I never got it to work.

>Private Sub Command1_Click()
>   Dim out As Object
>   Set out = CreateObject("Outlook.Application")
>   With out.CreateItem(olMailItem)

>   .Subject = "whatever"
>   .Body = "Text1.Text"
>   .Send
>End With
>End Sub

>this is just a rough account of the code..but you get the idea.
>If you are interested in my proposition or need more informatoin, please

>Thanks,
>Andrew Sain



Sat, 31 Mar 2001 03:00:00 GMT  
 will pay for someone to get this to work
Use the Microsoft MAPI OCX...

    MAPISession1.SignOn
    With MAPIMessages1
        .MsgIndex = -1
        .RecipDisplayName = txtSendTo.Text
        .MsgSubject = txtSubject.Text
        .MsgNoteText = txtMessage.Text
        .SessionID = MAPISession1.SessionID
        .Send
    End With
    MsgBox "Message sent!", , "Send Message"

this will send through the system's DEFAULT e-mail proggy...

Quote:

> K...here you go guys and gals that want to make a little money. I have a
> database program that I use to keep up wiht my clients. I need the program
> to put an email in my Outlook Express (not MS Outlook..this is the important
> part) outbox to be sent next time I connect. I need it to automatically set
> the email address, subject, and body of the message (as it will be used to
> send email invoices). I tried some code like this that is supposed to work
> from MS Outlook but I never got it to work.

> Private Sub Command1_Click()
>    Dim out As Object
>    Set out = CreateObject("Outlook.Application")
>    With out.CreateItem(olMailItem)

>    .Subject = "whatever"
>    .Body = "Text1.Text"
>    .Send
> End With
> End Sub

> this is just a rough account of the code..but you get the idea.
> If you are interested in my proposition or need more informatoin, please

> Thanks,
> Andrew Sain



Sat, 31 Mar 2001 03:00:00 GMT  
 will pay for someone to get this to work

Quote:
>to put an email in my Outlook Express (not MS Outlook..this is

Hi, Andrew

I will send you code for free, if
you reply to your own post: "password program prob", date
10/10/1998, size 162KB!!!
with apology to the NG readers, and write 20 times:
"I will never do this again!"

Fair?

Bruno Paris
Ameba
to reply via email, remove nospam_



Sun, 01 Apr 2001 03:00:00 GMT  
 
 [ 5 post ] 

 Relevant Pages 

1. I need someone to teach my VB willing to pay

2. Help wanted - willing to pay fair hourly rate

3. Willing to pay for a searchable Internet Database

4. In need of a programmer. Willing to pay

5. Willing to pay for a searchable Internet Database

6. printing and graphics help needed- willing to pay

7. need a script willing to pay

8. Crystal Reports Licensing - Willing to Pay for Expertise

9. VB Mentor needed to assist me, willing to pay $$$

10. will pay for someone to teach me VB

11. Willing to work for free....

12. Programmer willing to work very inexpensively

 

 
Powered by phpBB® Forum Software