How to Send Emails From the Citrix Server Through CDO Manager
The Collaboration Data Objects (CDO) protocol is a Microsoft technology used to create message applications. This technology is implemented and invoked within scripts you create for messaging. If you are coding a script on your Citrix computer, to use the CDO managing technology, then you need to use the CDO.Message terms. As CDO is a Microsoft protocol; its typical implementation is within an ASP script file.
Instructions
-
-
1
Open your script file in your preferred editor.
-
2
Copy and paste the following example script:
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="mymail@mydomain.com"
myMail.To="someone@somedomain.com"
myMail.TextBody="This is a message."
myMail.Send
set myMail=nothing
%> -
-
3
Change the text within each pair of quote marks to change your email (excluding the CDO.Message quotes).
-
1