So on a Windows 7 32 bit PC running Outlook 2010, the following email script works:

 Code:
; verify the files to e-mail exists
If Exist ("C:\Cognos\Data\reportbyday.pdf")

;main program loop

$rc = SetOption("NoMacrosInStrings","On")
$rc = SetOption("NoVarsInStrings","On")

; outlook variables

	$Root = CreateObject("Outlook.Application")
	$Session = $Root.GetNamespace("MAPI")
	$DefaultProfile = Outlook
	$Session.Logon($DefaultProfile)	
	$Folder = $Session.GetDefaultFolder(olFolderInbox)
	$Folder.Display

; launch outlook and add email information

			$MailItem = $Root.CreateItem(0)
? "Root Creation: "+@Error
			$MailItem.Importance = 1
			$MailItem.Subject = "Daily Report -- DO NOT REPLY!!!!"
			$MailItem.Sender = "sender@someplace.org"
			$MailItem.To = "receiver@someplace.org"
			$MailItem.Body = "Daily Report Attached!!!"
			$MailItem.Attachments.Add("C:\Cognos\Data\reportbyday.pdf")
			$MailItem.Send
			$Root = 0
endif


Thanks to everyone for all your assistance!!

IF there are checks and balances that anyone thinks I need, just let me know!