BCC is not supported at this time, as for the CC you can simply specify comma separated list of recipients in the TO. If you really need to do BCC you can create VBScript job that uses either Outlook COM automation or Microsoft CDO objects (available in Windows 2000 and XP). Her is a VBScript example for CDO Sub Main() Set objMail = CreateObject("CDONTS.NewMail") objMail.From="me@mydomain.com" objMail.To="user@domain.com" objMail.Cc="user2@domain.com" objMail.Bcc="user3@domain.com" objMail.Subject="Test Mail" objMail.Body="This is a test mail using CDO" objMail.Send Set objMail = nothing End Sub For more info please check http://msdn.microsoft.com/library/en-us/cdo/html/_olemsg_full_send_sample_application.asp : Is there a way to send an Email using mailsend and mailsendwithattachement to : CC and BCC recipients? I have tried several things and looked for online : help without success. : Thanks.
|