sendmail

  • Thread starter Thread starter Eef
  • Start date Start date
E

Eef

After having typed this code

Dim Send As Dialog
Send = Application.Dialogs(xlDialogSendMail).Show(

I see a great number of arguments.
What do they stand for, or where could I find that?

Thanks in advance
 
Try searching in the HELP for VB Editor
You may look for 'Built-In Dialog Box Argument Lists'
Arguments are
recipients (string), subject (string), return_receipt (boolean)

Example:
Sub test()
send = Application.Dialogs(xlDialogSendMail).Show("(e-mail address removed)", "This
is a test mail", True)
End Sub
 
Hi Eef

Why not use other mail code
You have much more options then

See
http://www.rondebruin.nl/sendmail.htm



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




Eef said:
After having typed this code

Dim Send As Dialog
Send = Application.Dialogs(xlDialogSendMail).Show(

I see a great number of arguments.
What do they stand for, or where could I find that?

Thanks in advance

--
Eef H.



__________ Information from ESET Smart Security, version of virus signature database 3954 (20090323) __________

The message was checked by ESET Smart Security.

http://www.eset.com

__________ Information from ESET Smart Security, version of virus signature database 3954 (20090323) __________

The message was checked by ESET Smart Security.

http://www.eset.com
 
Graag gedaan

Suc6



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




Eef said:
Ron,

Dank.
Duizelingwekkend wat er mogelijk is.

Eef H.





__________ Information from ESET Smart Security, version of virus signature database 3955 (20090323) __________

The message was checked by ESET Smart Security.

http://www.eset.com

__________ Information from ESET Smart Security, version of virus signature database 3955 (20090323) __________

The message was checked by ESET Smart Security.

http://www.eset.com
 
Back
Top