473,466 Members | 1,354 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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
------------------------------
Jul 17 '05 #1
13 9086
~ Le Naja ~ wrote:
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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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

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
Jul 17 '05 #2
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.SignOn
If Err <> 0 Then
MsgBox "Logon Failure: " + Error$
End If
.MAPIMessages1.SessionID = .MAPISession1.SessionID
.MAPIMessages1.MsgIndex = -1
.MAPIMessages1.Compose
.MAPIMessages1.RecipDisplayName = CLIENTEMAIL
.MAPIMessages1.RecipAddress = CLIENTEMAIL
.MAPIMessages1.Send True
.MAPISession1.SignOff
End With

Exit Sub

ErrorHandler:

End Sub
"~ Le Naja ~" <Cliquez_sur_ma_signature> wrote in message
news:40*********************@news.skynet.be...
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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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
------------------------------

Jul 17 '05 #3
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" <ed*****@comcast.net> a écrit dans le message de
news:dK********************@comcast.com...
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.SignOn
If Err <> 0 Then
MsgBox "Logon Failure: " + Error$
End If
.MAPIMessages1.SessionID = .MAPISession1.SessionID
.MAPIMessages1.MsgIndex = -1
.MAPIMessages1.Compose
.MAPIMessages1.RecipDisplayName = CLIENTEMAIL
.MAPIMessages1.RecipAddress = CLIENTEMAIL
.MAPIMessages1.Send True
.MAPISession1.SignOff
End With

Exit Sub

ErrorHandler:

End Sub
"~ Le Naja ~" <Cliquez_sur_ma_signature> wrote in message
news:40*********************@news.skynet.be...
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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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
------------------------------


Jul 17 '05 #4

"Dikkie Dik" <Ab***@SpamBusters.com> a écrit dans le message de
news:40*********************@dreader-2.news.scarlet-internet.nl...
~ 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


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
------------------------------
Jul 17 '05 #5
Misschien even de vertaling in het nederlands ook zetten dan kunnen alle
nederlandstaligen 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:40*********************@news.skynet.be...
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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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
------------------------------

Jul 17 '05 #6
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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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" <no****@fictief.com> a écrit dans le message de
news:40*********************@news.skynet.be...
Misschien even de vertaling in het nederlands ook zetten dan kunnen alle
nederlandstaligen 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:40*********************@news.skynet.be...
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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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
------------------------------


Jul 17 '05 #7
dim destinationSTR as string

destinationSTR = "no****@fictief.com"
x = Shell("C:\Program Files\Outlook Express\msimn.exe/mailurl:mailto:" &
destinationSTR & "?subject=Hello&Body=mytext")

Greets John
--
-----------------------------------------------
John Lauwers
Robotronic Nv
jo**@robotronic.be

"~ Le Naja ~" <Cliquez_sur_ma_signature> schreef in bericht
news:40*********************@news.skynet.be...
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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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" <no****@fictief.com> a écrit dans le message de
news:40*********************@news.skynet.be...
Misschien even de vertaling in het nederlands ook zetten dan kunnen alle
nederlandstaligen 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:40*********************@news.skynet.be...
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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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
------------------------------



Jul 17 '05 #8
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:40*********************@news.skynet.be...
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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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" <no****@fictief.com> a écrit dans le message de
news:40*********************@news.skynet.be...
Misschien even de vertaling in het nederlands ook zetten dan kunnen alle
nederlandstaligen 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:40*********************@news.skynet.be...
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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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
------------------------------



Jul 17 '05 #9
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" <no****@fictief.com> a écrit dans le message de
news:40**********************@news.skynet.be...
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:40*********************@news.skynet.be...
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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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" <no****@fictief.com> a écrit dans le message de
news:40*********************@news.skynet.be...
Misschien even de vertaling in het nederlands ook zetten dan kunnen alle nederlandstaligen 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:40*********************@news.skynet.be...
> 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:\Program Files\Outlook Express\msimn.exe
> /mailurl:mailto:de***************@name.be?subject=H ello&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
> ------------------------------
>
>



Jul 17 '05 #10
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" <no****@fictief.com> a écrit dans le message de
news:40**********************@news.skynet.be...
dim destinationSTR as string

destinationSTR = "no****@fictief.com"
x = Shell("C:\Program Files\Outlook Express\msimn.exe/mailurl:mailto:" &
destinationSTR & "?subject=Hello&Body=mytext")

Greets John
--
-----------------------------------------------
John Lauwers
Robotronic Nv
jo**@robotronic.be

"~ Le Naja ~" <Cliquez_sur_ma_signature> schreef in bericht
news:40*********************@news.skynet.be...
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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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" <no****@fictief.com> a écrit dans le message de
news:40*********************@news.skynet.be...
Misschien even de vertaling in het nederlands ook zetten dan kunnen alle nederlandstaligen 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:40*********************@news.skynet.be...
> 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:\Program Files\Outlook Express\msimn.exe
> /mailurl:mailto:de***************@name.be?subject=H ello&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
> ------------------------------
>
>



Jul 17 '05 #11
"~ Le Naja ~" <Cliquez_sur_ma_signature> wrote:
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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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


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.
Jul 17 '05 #12

"the Wiz" <lo**@message.body> a écrit dans le message de
news:h9********************************@4ax.com...
"~ 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 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.
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
------------------------------


Jul 17 '05 #13
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:40***********************@news.skynet.be...
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" <no****@fictief.com> a écrit dans le message de
news:40**********************@news.skynet.be...
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:40*********************@news.skynet.be...
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:\Program Files\Outlook Express\msimn.exe
/mailurl:mailto:de***************@name.be?subject=H ello&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" <no****@fictief.com> a écrit dans le message de
news:40*********************@news.skynet.be...
> Misschien even de vertaling in het nederlands ook zetten dan kunnen alle > nederlandstaligen 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:40*********************@news.skynet.be...
> > 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:\Program Files\Outlook Express\msimn.exe
> > /mailurl:mailto:de***************@name.be?subject=H ello&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
> > ------------------------------
> >
> >
>
>



Jul 17 '05 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Neil Greenough | last post by:
I currently have the following VB code in a MS Access Database which I use to send emails. Nonetheless, it opens Outlook and I would like it to send an email using Outlook Express. Could anyone...
2
by: Steve | last post by:
How do you programatically save files that are attached to an email to a specified folder? It could be one file or multiple files attached to the email. Can it be done if Outlook Express is being...
1
by: Jay McGrath | last post by:
Help - trying to send a simple text email with with as little user intervention. I am trying to create a button in my Access application that will automatically send a simple text email. It...
8
by: Chris Marsh | last post by:
Help... I am receiving this error "550 5.7.1 Unable to relay for synergytestacct@yahoo.com" when I try to send outside email directly from the website project. Keep in mind this works fine for...
4
by: roni | last post by:
i dont like to use ocx controlx. is there new dll for vb.net that do the job ? or newer code, to send email throught outlook express.
4
by: Charles A. Lackman | last post by:
Hello, I am trying to format an email and have a .net application open up Outlook or Outlook Express so that the user can simply click Send and have the formatted email send from their email...
1
by: Alexander Vasilevsky | last post by:
How extract email address from the address book in Outlook Express? http://www.alvas.net - Audio tools for C# and VB.Net developers
2
by: ManningFan | last post by:
I built a nifty little SPAM killer with Access linking into Outlook while I was at work the other day (boring day, loads of time to kill...) but now I'd like to use it at home where we use Outlook...
0
by: Bibin | last post by:
I want to send email via Outlook Express and not by Outlook in VB.NET (windows application). I also want to attach files with the email. The mail (in Outlook Express) needs to be displayed before...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.