email outlook express

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • ~ Le Naja ~

    email outlook express

    Hello evrybody,
    First, I hope you will understand my English because I come from Belgium !
    :-)
    Here is what I want to know if you have the kindess to help me ! :-)
    I use the code above to mail with outlook express ...
    x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
    /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
    But I don't find the way to put te adress of the sender, because if I don't
    put the adress of the sender (myself) outlook express
    use the default adress and I want to put a specific (another) adress :-)
    I hope someone can help me ! :-)
    Have a nice day ! :-)
    Le Naja

    --
    ------------------------------
    ~ Le Naja ~
    Email: http://users.skynet.be/mew/email.html
    Post rédigé le samedi 7 février 2004
    Nous fêtons: Eugenie
    ------------------------------


  • Dikkie Dik

    #2
    Re: email outlook express

    ~ Le Naja ~ wrote:
    [color=blue]
    > Hello evrybody,
    > First, I hope you will understand my English because I come from Belgium !
    > :-)
    > Here is what I want to know if you have the kindess to help me ! :-)
    > I use the code above to mail with outlook express ...
    > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
    > /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
    > But I don't find the way to put te adress of the sender, because if I don't
    > put the adress of the sender (myself) outlook express
    > use the default adress and I want to put a specific (another) adress :-)
    > I hope someone can help me ! :-)
    > Have a nice day ! :-)
    > Le Naja
    >[/color]
    I think you can use the MAPI component to control outlook express. It is
    a some work to send one message, but the help file is quite clear.

    Best regards

    Comment

    • edoepke

      #3
      Re: email outlook express

      Use the MAPI control from the Components list. Place the MAPISession and the
      MAPIMessages controls on your form and then call this procedure.

      'CLIENTEMAIL is the address you want to send the email to

      Public Sub SendAnEmail()
      On Error GoTo ErrorHandler
      With frmMain
      .MAPISession1.S ignOn
      If Err <> 0 Then
      MsgBox "Logon Failure: " + Error$
      End If
      .MAPIMessages1. SessionID = .MAPISession1.S essionID
      .MAPIMessages1. MsgIndex = -1
      .MAPIMessages1. Compose
      .MAPIMessages1. RecipDisplayNam e = CLIENTEMAIL
      .MAPIMessages1. RecipAddress = CLIENTEMAIL
      .MAPIMessages1. Send True
      .MAPISession1.S ignOff
      End With

      Exit Sub

      ErrorHandler:

      End Sub
      "~ Le Naja ~" <Cliquez_sur_ma _signature> wrote in message
      news:4025293f$0 $313$ba620e4c@n ews.skynet.be.. .[color=blue]
      > Hello evrybody,
      > First, I hope you will understand my English because I come from Belgium !
      > :-)
      > Here is what I want to know if you have the kindess to help me ! :-)
      > I use the code above to mail with outlook express ...
      > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
      > /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
      > But I don't find the way to put te adress of the sender, because if I[/color]
      don't[color=blue]
      > put the adress of the sender (myself) outlook express
      > use the default adress and I want to put a specific (another) adress :-)
      > I hope someone can help me ! :-)
      > Have a nice day ! :-)
      > Le Naja
      >
      > --
      > ------------------------------
      > ~ Le Naja ~
      > Email: http://users.skynet.be/mew/email.html
      > Post rédigé le samedi 7 février 2004
      > Nous fêtons: Eugenie
      > ------------------------------
      >
      >[/color]


      Comment

      • ~ Le Naja ~

        #4
        Re: email outlook express

        Thank you ...but I think I don't explain correctly want is my purpose ! :-)
        How can I put in this source (automatically) one of my adresses ? :-)
        Because I use this source like that, Outlook Express put my default adress
        ! :-)
        Have a nice day ! :-)

        --
        ------------------------------
        ~ Le Naja ~
        Email: http://users.skynet.be/mew/email.html
        Post rédigé le dimanche 8 février 2004
        Nous fêtons: Jacqueline
        ------------------------------
        "edoepke" <edoepke@comcas t.net> a écrit dans le message de
        news:dKidnR8ovc eSLrjdRVn-jQ@comcast.com. ..[color=blue]
        > Use the MAPI control from the Components list. Place the MAPISession and[/color]
        the[color=blue]
        > MAPIMessages controls on your form and then call this procedure.
        >
        > 'CLIENTEMAIL is the address you want to send the email to
        >
        > Public Sub SendAnEmail()
        > On Error GoTo ErrorHandler
        > With frmMain
        > .MAPISession1.S ignOn
        > If Err <> 0 Then
        > MsgBox "Logon Failure: " + Error$
        > End If
        > .MAPIMessages1. SessionID = .MAPISession1.S essionID
        > .MAPIMessages1. MsgIndex = -1
        > .MAPIMessages1. Compose
        > .MAPIMessages1. RecipDisplayNam e = CLIENTEMAIL
        > .MAPIMessages1. RecipAddress = CLIENTEMAIL
        > .MAPIMessages1. Send True
        > .MAPISession1.S ignOff
        > End With
        >
        > Exit Sub
        >
        > ErrorHandler:
        >
        > End Sub
        > "~ Le Naja ~" <Cliquez_sur_ma _signature> wrote in message
        > news:4025293f$0 $313$ba620e4c@n ews.skynet.be.. .[color=green]
        > > Hello evrybody,
        > > First, I hope you will understand my English because I come from Belgium[/color][/color]
        ![color=blue][color=green]
        > > :-)
        > > Here is what I want to know if you have the kindess to help me ! :-)
        > > I use the code above to mail with outlook express ...
        > > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
        > > /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
        > > But I don't find the way to put te adress of the sender, because if I[/color]
        > don't[color=green]
        > > put the adress of the sender (myself) outlook express
        > > use the default adress and I want to put a specific (another) adress :-)
        > > I hope someone can help me ! :-)
        > > Have a nice day ! :-)
        > > Le Naja
        > >
        > > --
        > > ------------------------------
        > > ~ Le Naja ~
        > > Email: http://users.skynet.be/mew/email.html
        > > Post rédigé le samedi 7 février 2004
        > > Nous fêtons: Eugenie
        > > ------------------------------
        > >
        > >[/color]
        >
        >[/color]


        Comment

        • ~ Le Naja ~

          #5
          Re: email outlook express


          "Dikkie Dik" <Abuse@SpamBust ers.com> a écrit dans le message de
          news:40255af3$0 $249$7a628dc9@d reader-2.news.scarlet-internet.nl...[color=blue]
          > ~ Le Naja ~ wrote:
          >
          > I think you can use the MAPI component to control outlook express. It is
          > a some work to send one message, but the help file is quite clear.
          >
          > Best regards[/color]

          Thank you very much ...but I want (if possible) to have automatically one of
          my adresses (sender)
          in place of the default adress ! :-)

          --
          ------------------------------
          ~ Le Naja ~
          Email: http://users.skynet.be/mew/email.html
          Post rédigé le dimanche 8 février 2004
          Nous fêtons: Jacqueline
          ------------------------------


          Comment

          • John Lauwers

            #6
            Re: email outlook express

            Misschien even de vertaling in het nederlands ook zetten dan kunnen alle
            nederlandstalig en het misschien beter verstaan en oplossen.

            Maybe putting the translation into dutch will be more readable to som dutch
            posters and maybe fully understand wath you want

            Greets John


            "~ Le Naja ~" <Cliquez_sur_ma _signature> schreef in bericht
            news:4025293f$0 $313$ba620e4c@n ews.skynet.be.. .[color=blue]
            > Hello evrybody,
            > First, I hope you will understand my English because I come from Belgium !
            > :-)
            > Here is what I want to know if you have the kindess to help me ! :-)
            > I use the code above to mail with outlook express ...
            > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
            > /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
            > But I don't find the way to put te adress of the sender, because if I[/color]
            don't[color=blue]
            > put the adress of the sender (myself) outlook express
            > use the default adress and I want to put a specific (another) adress :-)
            > I hope someone can help me ! :-)
            > Have a nice day ! :-)
            > Le Naja
            >
            > --
            > ------------------------------
            > ~ Le Naja ~
            > Email: http://users.skynet.be/mew/email.html
            > Post rédigé le samedi 7 février 2004
            > Nous fêtons: Eugenie
            > ------------------------------
            >
            >[/color]


            Comment

            • ~ Le Naja ~

              #7
              Re: email outlook express

              Hello iedereen,
              Hier is wat ik wil weten of hebt u kindess om me te helpen! :-)
              Ik gebruik hierboven de code aan Outlook Express vooruitzichten. ..
              Maar ik vind niet de manier om te adress van de afzender te zetten,
              x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
              /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
              omdat als ik niet adress van uitdrukkelijke gebruik het van afzender (zelf)
              vooruitzichten
              het gebrek adress zette en ik specifiek (een andere) wil zetten adress:-)
              Ik hoop iemand me kan helpen! :-)
              Vriendelijk ! :-)
              --
              ------------------------------
              ~ Le Naja ~
              Email: http://users.skynet.be/mew/email.html
              Post rédigé le dimanche 8 février 2004
              Nous fêtons: Jacqueline
              ------------------------------
              "John Lauwers" <nobody@fictief .com> a écrit dans le message de
              news:4026030b$0 $782$ba620e4c@n ews.skynet.be.. .[color=blue]
              > Misschien even de vertaling in het nederlands ook zetten dan kunnen alle
              > nederlandstalig en het misschien beter verstaan en oplossen.
              >
              > Maybe putting the translation into dutch will be more readable to som[/color]
              dutch[color=blue]
              > posters and maybe fully understand wath you want
              >
              > Greets John
              >
              >
              > "~ Le Naja ~" <Cliquez_sur_ma _signature> schreef in bericht
              > news:4025293f$0 $313$ba620e4c@n ews.skynet.be.. .[color=green]
              > > Hello evrybody,
              > > First, I hope you will understand my English because I come from Belgium[/color][/color]
              ![color=blue][color=green]
              > > :-)
              > > Here is what I want to know if you have the kindess to help me ! :-)
              > > I use the code above to mail with outlook express ...
              > > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
              > > /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
              > > But I don't find the way to put te adress of the sender, because if I[/color]
              > don't[color=green]
              > > put the adress of the sender (myself) outlook express
              > > use the default adress and I want to put a specific (another) adress :-)
              > > I hope someone can help me ! :-)
              > > Have a nice day ! :-)
              > > Le Naja
              > >
              > > --
              > > ------------------------------
              > > ~ Le Naja ~
              > > Email: http://users.skynet.be/mew/email.html
              > > Post rédigé le samedi 7 février 2004
              > > Nous fêtons: Eugenie
              > > ------------------------------
              > >
              > >[/color]
              >
              >[/color]


              Comment

              • John Lauwers

                #8
                Re: email outlook express

                dim destinationSTR as string

                destinationSTR = "nobody@fictief .com"
                x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe/mailurl:mailto: " &
                destinationSTR & "?subject=Hello &Body=mytext ")

                Greets John


                --
                -----------------------------------------------
                John Lauwers
                Robotronic Nv
                john@robotronic .be

                "~ Le Naja ~" <Cliquez_sur_ma _signature> schreef in bericht
                news:4026089e$0 $318$ba620e4c@n ews.skynet.be.. .[color=blue]
                > Hello iedereen,
                > Hier is wat ik wil weten of hebt u kindess om me te helpen! :-)
                > Ik gebruik hierboven de code aan Outlook Express vooruitzichten. ..
                > Maar ik vind niet de manier om te adress van de afzender te zetten,
                > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
                > /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
                > omdat als ik niet adress van uitdrukkelijke gebruik het van afzender[/color]
                (zelf)[color=blue]
                > vooruitzichten
                > het gebrek adress zette en ik specifiek (een andere) wil zetten adress:-)
                > Ik hoop iemand me kan helpen! :-)
                > Vriendelijk ! :-)
                > --
                > ------------------------------
                > ~ Le Naja ~
                > Email: http://users.skynet.be/mew/email.html
                > Post rédigé le dimanche 8 février 2004
                > Nous fêtons: Jacqueline
                > ------------------------------
                > "John Lauwers" <nobody@fictief .com> a écrit dans le message de
                > news:4026030b$0 $782$ba620e4c@n ews.skynet.be.. .[color=green]
                > > Misschien even de vertaling in het nederlands ook zetten dan kunnen alle
                > > nederlandstalig en het misschien beter verstaan en oplossen.
                > >
                > > Maybe putting the translation into dutch will be more readable to som[/color]
                > dutch[color=green]
                > > posters and maybe fully understand wath you want
                > >
                > > Greets John
                > >
                > >
                > > "~ Le Naja ~" <Cliquez_sur_ma _signature> schreef in bericht
                > > news:4025293f$0 $313$ba620e4c@n ews.skynet.be.. .[color=darkred]
                > > > Hello evrybody,
                > > > First, I hope you will understand my English because I come from[/color][/color][/color]
                Belgium[color=blue]
                > ![color=green][color=darkred]
                > > > :-)
                > > > Here is what I want to know if you have the kindess to help me ! :-)
                > > > I use the code above to mail with outlook express ...
                > > > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
                > > > /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
                > > > But I don't find the way to put te adress of the sender, because if I[/color]
                > > don't[color=darkred]
                > > > put the adress of the sender (myself) outlook express
                > > > use the default adress and I want to put a specific (another) adress[/color][/color][/color]
                :-)[color=blue][color=green][color=darkred]
                > > > I hope someone can help me ! :-)
                > > > Have a nice day ! :-)
                > > > Le Naja
                > > >
                > > > --
                > > > ------------------------------
                > > > ~ Le Naja ~
                > > > Email: http://users.skynet.be/mew/email.html
                > > > Post rédigé le samedi 7 février 2004
                > > > Nous fêtons: Eugenie
                > > > ------------------------------
                > > >
                > > >[/color]
                > >
                > >[/color]
                >
                >[/color]


                Comment

                • John Lauwers

                  #9
                  Re: email outlook express

                  By the way I tought your dutch would be better (cause you are from belgium)
                  but it seems to be wurse then your English :<)


                  Greets John

                  "~ Le Naja ~" <Cliquez_sur_ma _signature> schreef in bericht
                  news:4026089e$0 $318$ba620e4c@n ews.skynet.be.. .[color=blue]
                  > Hello iedereen,
                  > Hier is wat ik wil weten of hebt u kindess om me te helpen! :-)
                  > Ik gebruik hierboven de code aan Outlook Express vooruitzichten. ..
                  > Maar ik vind niet de manier om te adress van de afzender te zetten,
                  > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
                  > /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
                  > omdat als ik niet adress van uitdrukkelijke gebruik het van afzender[/color]
                  (zelf)[color=blue]
                  > vooruitzichten
                  > het gebrek adress zette en ik specifiek (een andere) wil zetten adress:-)
                  > Ik hoop iemand me kan helpen! :-)
                  > Vriendelijk ! :-)
                  > --
                  > ------------------------------
                  > ~ Le Naja ~
                  > Email: http://users.skynet.be/mew/email.html
                  > Post rédigé le dimanche 8 février 2004
                  > Nous fêtons: Jacqueline
                  > ------------------------------
                  > "John Lauwers" <nobody@fictief .com> a écrit dans le message de
                  > news:4026030b$0 $782$ba620e4c@n ews.skynet.be.. .[color=green]
                  > > Misschien even de vertaling in het nederlands ook zetten dan kunnen alle
                  > > nederlandstalig en het misschien beter verstaan en oplossen.
                  > >
                  > > Maybe putting the translation into dutch will be more readable to som[/color]
                  > dutch[color=green]
                  > > posters and maybe fully understand wath you want
                  > >
                  > > Greets John
                  > >
                  > >
                  > > "~ Le Naja ~" <Cliquez_sur_ma _signature> schreef in bericht
                  > > news:4025293f$0 $313$ba620e4c@n ews.skynet.be.. .[color=darkred]
                  > > > Hello evrybody,
                  > > > First, I hope you will understand my English because I come from[/color][/color][/color]
                  Belgium[color=blue]
                  > ![color=green][color=darkred]
                  > > > :-)
                  > > > Here is what I want to know if you have the kindess to help me ! :-)
                  > > > I use the code above to mail with outlook express ...
                  > > > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
                  > > > /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
                  > > > But I don't find the way to put te adress of the sender, because if I[/color]
                  > > don't[color=darkred]
                  > > > put the adress of the sender (myself) outlook express
                  > > > use the default adress and I want to put a specific (another) adress[/color][/color][/color]
                  :-)[color=blue][color=green][color=darkred]
                  > > > I hope someone can help me ! :-)
                  > > > Have a nice day ! :-)
                  > > > Le Naja
                  > > >
                  > > > --
                  > > > ------------------------------
                  > > > ~ Le Naja ~
                  > > > Email: http://users.skynet.be/mew/email.html
                  > > > Post rédigé le samedi 7 février 2004
                  > > > Nous fêtons: Eugenie
                  > > > ------------------------------
                  > > >
                  > > >[/color]
                  > >
                  > >[/color]
                  >
                  >[/color]


                  Comment

                  • ~ Le Naja ~

                    #10
                    Re: email outlook express

                    haha ! :-))))))) No, my friend, I am from south of Belgium, and here,
                    we don't speak dutch currently :-)
                    Best regards :-)
                    --
                    ------------------------------
                    ~ Le Naja ~
                    Email: http://users.skynet.be/mew/email.html
                    Post rédigé le dimanche 8 février 2004
                    Nous fêtons: Jacqueline
                    ------------------------------
                    "John Lauwers" <nobody@fictief .com> a écrit dans le message de
                    news:40262c37$0 $7042$ba620e4c@ news.skynet.be. ..[color=blue]
                    > By the way I tought your dutch would be better (cause you are from[/color]
                    belgium)[color=blue]
                    > but it seems to be wurse then your English :<)
                    >
                    >
                    > Greets John
                    >
                    > "~ Le Naja ~" <Cliquez_sur_ma _signature> schreef in bericht
                    > news:4026089e$0 $318$ba620e4c@n ews.skynet.be.. .[color=green]
                    > > Hello iedereen,
                    > > Hier is wat ik wil weten of hebt u kindess om me te helpen! :-)
                    > > Ik gebruik hierboven de code aan Outlook Express vooruitzichten. ..
                    > > Maar ik vind niet de manier om te adress van de afzender te zetten,
                    > > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
                    > > /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
                    > > omdat als ik niet adress van uitdrukkelijke gebruik het van afzender[/color]
                    > (zelf)[color=green]
                    > > vooruitzichten
                    > > het gebrek adress zette en ik specifiek (een andere) wil zetten[/color][/color]
                    adress:-)[color=blue][color=green]
                    > > Ik hoop iemand me kan helpen! :-)
                    > > Vriendelijk ! :-)
                    > > --
                    > > ------------------------------
                    > > ~ Le Naja ~
                    > > Email: http://users.skynet.be/mew/email.html
                    > > Post rédigé le dimanche 8 février 2004
                    > > Nous fêtons: Jacqueline
                    > > ------------------------------
                    > > "John Lauwers" <nobody@fictief .com> a écrit dans le message de
                    > > news:4026030b$0 $782$ba620e4c@n ews.skynet.be.. .[color=darkred]
                    > > > Misschien even de vertaling in het nederlands ook zetten dan kunnen[/color][/color][/color]
                    alle[color=blue][color=green][color=darkred]
                    > > > nederlandstalig en het misschien beter verstaan en oplossen.
                    > > >
                    > > > Maybe putting the translation into dutch will be more readable to som[/color]
                    > > dutch[color=darkred]
                    > > > posters and maybe fully understand wath you want
                    > > >
                    > > > Greets John
                    > > >
                    > > >
                    > > > "~ Le Naja ~" <Cliquez_sur_ma _signature> schreef in bericht
                    > > > news:4025293f$0 $313$ba620e4c@n ews.skynet.be.. .
                    > > > > Hello evrybody,
                    > > > > First, I hope you will understand my English because I come from[/color][/color]
                    > Belgium[color=green]
                    > > ![color=darkred]
                    > > > > :-)
                    > > > > Here is what I want to know if you have the kindess to help me ! :-)
                    > > > > I use the code above to mail with outlook express ...
                    > > > > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
                    > > > >[/color][/color][/color]
                    /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")[color=blue][color=green][color=darkred]
                    > > > > But I don't find the way to put te adress of the sender, because if[/color][/color][/color]
                    I[color=blue][color=green][color=darkred]
                    > > > don't
                    > > > > put the adress of the sender (myself) outlook express
                    > > > > use the default adress and I want to put a specific (another) adress[/color][/color]
                    > :-)[color=green][color=darkred]
                    > > > > I hope someone can help me ! :-)
                    > > > > Have a nice day ! :-)
                    > > > > Le Naja
                    > > > >
                    > > > > --
                    > > > > ------------------------------
                    > > > > ~ Le Naja ~
                    > > > > Email: http://users.skynet.be/mew/email.html
                    > > > > Post rédigé le samedi 7 février 2004
                    > > > > Nous fêtons: Eugenie
                    > > > > ------------------------------
                    > > > >
                    > > > >
                    > > >
                    > > >[/color]
                    > >
                    > >[/color]
                    >
                    >[/color]


                    Comment

                    • ~ Le Naja ~

                      #11
                      Re: email outlook express

                      Hm ! I knew the procedure with the destination, but the thing I
                      want to know is the code with the SENDER too ! :-)
                      Your code is about the same than the one I knew, and with
                      your code, the sender is the default account, and, what I want, is to put
                      another
                      of MY own adress ! :-) Do you understand what I mean ? :-)
                      Tank you for your answer ... I hope you will find how to help me ! :-)
                      See you later ! :-)
                      --
                      ------------------------------
                      ~ Le Naja ~
                      Email: http://users.skynet.be/mew/email.html
                      Post rédigé le dimanche 8 février 2004
                      Nous fêtons: Jacqueline
                      ------------------------------
                      "John Lauwers" <nobody@fictief .com> a écrit dans le message de
                      news:40262ba1$0 $7047$ba620e4c@ news.skynet.be. ..[color=blue]
                      > dim destinationSTR as string
                      >
                      > destinationSTR = "nobody@fictief .com"
                      > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe/mailurl:mailto: " &
                      > destinationSTR & "?subject=Hello &Body=mytext ")
                      >
                      > Greets John
                      >
                      >
                      > --
                      > -----------------------------------------------
                      > John Lauwers
                      > Robotronic Nv
                      > john@robotronic .be
                      >
                      > "~ Le Naja ~" <Cliquez_sur_ma _signature> schreef in bericht
                      > news:4026089e$0 $318$ba620e4c@n ews.skynet.be.. .[color=green]
                      > > Hello iedereen,
                      > > Hier is wat ik wil weten of hebt u kindess om me te helpen! :-)
                      > > Ik gebruik hierboven de code aan Outlook Express vooruitzichten. ..
                      > > Maar ik vind niet de manier om te adress van de afzender te zetten,
                      > > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
                      > > /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
                      > > omdat als ik niet adress van uitdrukkelijke gebruik het van afzender[/color]
                      > (zelf)[color=green]
                      > > vooruitzichten
                      > > het gebrek adress zette en ik specifiek (een andere) wil zetten[/color][/color]
                      adress:-)[color=blue][color=green]
                      > > Ik hoop iemand me kan helpen! :-)
                      > > Vriendelijk ! :-)
                      > > --
                      > > ------------------------------
                      > > ~ Le Naja ~
                      > > Email: http://users.skynet.be/mew/email.html
                      > > Post rédigé le dimanche 8 février 2004
                      > > Nous fêtons: Jacqueline
                      > > ------------------------------
                      > > "John Lauwers" <nobody@fictief .com> a écrit dans le message de
                      > > news:4026030b$0 $782$ba620e4c@n ews.skynet.be.. .[color=darkred]
                      > > > Misschien even de vertaling in het nederlands ook zetten dan kunnen[/color][/color][/color]
                      alle[color=blue][color=green][color=darkred]
                      > > > nederlandstalig en het misschien beter verstaan en oplossen.
                      > > >
                      > > > Maybe putting the translation into dutch will be more readable to som[/color]
                      > > dutch[color=darkred]
                      > > > posters and maybe fully understand wath you want
                      > > >
                      > > > Greets John
                      > > >
                      > > >
                      > > > "~ Le Naja ~" <Cliquez_sur_ma _signature> schreef in bericht
                      > > > news:4025293f$0 $313$ba620e4c@n ews.skynet.be.. .
                      > > > > Hello evrybody,
                      > > > > First, I hope you will understand my English because I come from[/color][/color]
                      > Belgium[color=green]
                      > > ![color=darkred]
                      > > > > :-)
                      > > > > Here is what I want to know if you have the kindess to help me ! :-)
                      > > > > I use the code above to mail with outlook express ...
                      > > > > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
                      > > > >[/color][/color][/color]
                      /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")[color=blue][color=green][color=darkred]
                      > > > > But I don't find the way to put te adress of the sender, because if[/color][/color][/color]
                      I[color=blue][color=green][color=darkred]
                      > > > don't
                      > > > > put the adress of the sender (myself) outlook express
                      > > > > use the default adress and I want to put a specific (another) adress[/color][/color]
                      > :-)[color=green][color=darkred]
                      > > > > I hope someone can help me ! :-)
                      > > > > Have a nice day ! :-)
                      > > > > Le Naja
                      > > > >
                      > > > > --
                      > > > > ------------------------------
                      > > > > ~ Le Naja ~
                      > > > > Email: http://users.skynet.be/mew/email.html
                      > > > > Post rédigé le samedi 7 février 2004
                      > > > > Nous fêtons: Eugenie
                      > > > > ------------------------------
                      > > > >
                      > > > >
                      > > >
                      > > >[/color]
                      > >
                      > >[/color]
                      >
                      >[/color]


                      Comment

                      • the Wiz

                        #12
                        Re: email outlook express

                        "~ Le Naja ~" <Cliquez_sur_ma _signature> wrote:
                        [color=blue]
                        >Hello evrybody,
                        >First, I hope you will understand my English because I come from Belgium !
                        >:-)
                        >Here is what I want to know if you have the kindess to help me ! :-)
                        >I use the code above to mail with outlook express ...
                        >x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
                        >/mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
                        >But I don't find the way to put te adress of the sender, because if I don't
                        >put the adress of the sender (myself) outlook express
                        >use the default adress and I want to put a specific (another) adress :-)
                        >I hope someone can help me ! :-)
                        >Have a nice day ! :-)
                        >Le Naja[/color]

                        Simple answer: don't use Outlook Express.

                        Try the free SMTP control from www.ostrosoft.com. This control gives you full
                        control of the mail you send: To:, From:, Subject:, even attachments.

                        I used the control to create a group notification email program that read the
                        addresses, salutations, and messages from a text file.

                        More about me: http://www.jecarter.com/
                        VB3/VB6/C/PowerBasic source code: http://www.jecarter.com/programs.html
                        Freeware for the Palm with NS Basic source code: http://nsb.jecarter.com
                        Drivers for Pablo graphics tablet and JamCam cameras: http://home.earthlink.net/~mwbt/
                        johnecarter at@at mindspring dot.dot com. Fix the obvious to reply by email.

                        Comment

                        • ~ Le Naja ~

                          #13
                          Re: email outlook express


                          "the Wiz" <look@message.b ody> a écrit dans le message de
                          news:h9sd20tr11 d0g01aljqffj9p9 r8vmdg54c@4ax.c om...[color=blue]
                          > "~ Le Naja ~" <Cliquez_sur_ma _signature> wrote:
                          >
                          > Simple answer: don't use Outlook Express.
                          >
                          > Try the free SMTP control from www.ostrosoft.com. This control gives you[/color]
                          full[color=blue]
                          > control of the mail you send: To:, From:, Subject:, even attachments.
                          >
                          > I used the control to create a group notification email program that read[/color]
                          the[color=blue]
                          > addresses, salutations, and messages from a text file.
                          >
                          > More about me: http://www.jecarter.com/
                          > VB3/VB6/C/PowerBasic source code: http://www.jecarter.com/programs.html
                          > Freeware for the Palm with NS Basic source code: http://nsb.jecarter.com
                          > Drivers for Pablo graphics tablet and JamCam cameras:[/color]
                          http://home.earthlink.net/~mwbt/[color=blue]
                          > johnecarter at@at mindspring dot.dot com. Fix the obvious to reply by[/color]
                          email.
                          Very kind of you to give me an answer ! :-)
                          But I really want to know the code about Outlook Express ! :-)
                          Best regards and have a fine day ! :-)
                          --
                          ------------------------------
                          ~ Le Naja ~
                          Email: http://users.skynet.be/mew/email.html
                          Post rédigé le lundi 9 février 2004
                          Nous fêtons: Apolline
                          ------------------------------






                          Comment

                          • John Lauwers

                            #14
                            Re: email outlook express

                            Je suis desoler, je croyais vous parlez neerlandais.

                            Mes excuses.

                            Moi je suis de sud/west de la belgique.
                            Moi je parle neerlandais.

                            a plus
                            John



                            "~ Le Naja ~" <Cliquez_sur_ma _signature> schreef in bericht
                            news:40267005$0 $13244$ba620e4c @news.skynet.be ...[color=blue]
                            > haha ! :-))))))) No, my friend, I am from south of Belgium, and here,
                            > we don't speak dutch currently :-)
                            > Best regards :-)
                            > --
                            > ------------------------------
                            > ~ Le Naja ~
                            > Email: http://users.skynet.be/mew/email.html
                            > Post rédigé le dimanche 8 février 2004
                            > Nous fêtons: Jacqueline
                            > ------------------------------
                            > "John Lauwers" <nobody@fictief .com> a écrit dans le message de
                            > news:40262c37$0 $7042$ba620e4c@ news.skynet.be. ..[color=green]
                            > > By the way I tought your dutch would be better (cause you are from[/color]
                            > belgium)[color=green]
                            > > but it seems to be wurse then your English :<)
                            > >
                            > >
                            > > Greets John
                            > >
                            > > "~ Le Naja ~" <Cliquez_sur_ma _signature> schreef in bericht
                            > > news:4026089e$0 $318$ba620e4c@n ews.skynet.be.. .[color=darkred]
                            > > > Hello iedereen,
                            > > > Hier is wat ik wil weten of hebt u kindess om me te helpen! :-)
                            > > > Ik gebruik hierboven de code aan Outlook Express vooruitzichten. ..
                            > > > Maar ik vind niet de manier om te adress van de afzender te zetten,
                            > > > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
                            > > > /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")
                            > > > omdat als ik niet adress van uitdrukkelijke gebruik het van afzender[/color]
                            > > (zelf)[color=darkred]
                            > > > vooruitzichten
                            > > > het gebrek adress zette en ik specifiek (een andere) wil zetten[/color][/color]
                            > adress:-)[color=green][color=darkred]
                            > > > Ik hoop iemand me kan helpen! :-)
                            > > > Vriendelijk ! :-)
                            > > > --
                            > > > ------------------------------
                            > > > ~ Le Naja ~
                            > > > Email: http://users.skynet.be/mew/email.html
                            > > > Post rédigé le dimanche 8 février 2004
                            > > > Nous fêtons: Jacqueline
                            > > > ------------------------------
                            > > > "John Lauwers" <nobody@fictief .com> a écrit dans le message de
                            > > > news:4026030b$0 $782$ba620e4c@n ews.skynet.be.. .
                            > > > > Misschien even de vertaling in het nederlands ook zetten dan kunnen[/color][/color]
                            > alle[color=green][color=darkred]
                            > > > > nederlandstalig en het misschien beter verstaan en oplossen.
                            > > > >
                            > > > > Maybe putting the translation into dutch will be more readable to[/color][/color][/color]
                            som[color=blue][color=green][color=darkred]
                            > > > dutch
                            > > > > posters and maybe fully understand wath you want
                            > > > >
                            > > > > Greets John
                            > > > >
                            > > > >
                            > > > > "~ Le Naja ~" <Cliquez_sur_ma _signature> schreef in bericht
                            > > > > news:4025293f$0 $313$ba620e4c@n ews.skynet.be.. .
                            > > > > > Hello evrybody,
                            > > > > > First, I hope you will understand my English because I come from[/color]
                            > > Belgium[color=darkred]
                            > > > !
                            > > > > > :-)
                            > > > > > Here is what I want to know if you have the kindess to help me ![/color][/color][/color]
                            :-)[color=blue][color=green][color=darkred]
                            > > > > > I use the code above to mail with outlook express ...
                            > > > > > x = Shell("C:\Progr am Files\Outlook Express\msimn.e xe
                            > > > > >[/color][/color]
                            > /mailurl:mailto: destinationAdre ss@name.be?subj ect=Hello&Body= mytext")[color=green][color=darkred]
                            > > > > > But I don't find the way to put te adress of the sender, because[/color][/color][/color]
                            if[color=blue]
                            > I[color=green][color=darkred]
                            > > > > don't
                            > > > > > put the adress of the sender (myself) outlook express
                            > > > > > use the default adress and I want to put a specific (another)[/color][/color][/color]
                            adress[color=blue][color=green]
                            > > :-)[color=darkred]
                            > > > > > I hope someone can help me ! :-)
                            > > > > > Have a nice day ! :-)
                            > > > > > Le Naja
                            > > > > >
                            > > > > > --
                            > > > > > ------------------------------
                            > > > > > ~ Le Naja ~
                            > > > > > Email: http://users.skynet.be/mew/email.html
                            > > > > > Post rédigé le samedi 7 février 2004
                            > > > > > Nous fêtons: Eugenie
                            > > > > > ------------------------------
                            > > > > >
                            > > > > >
                            > > > >
                            > > > >
                            > > >
                            > > >[/color]
                            > >
                            > >[/color]
                            >
                            >[/color]


                            Comment

                            Working...