The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
|
|
Contact Process Email
Posted: 23 May 06 1:25 PM
|
fiogf49gjkf0d We are trying to create a contact process that sends an email to a specific user and copies other people.
Is there anyway to specify the To: and CC: email addresses in an email template or in the contact process?
Thanks, John G.
|
|
|
|
Re: Contact Process Email
Posted: 28 May 06 1:54 PM
|
fiogf49gjkf0d I'd either script it or, if there is a large amount of processes involved, look at implementing Knowledge Sync.
Stephen
|
|
|
|
Re: Contact Process Email
Posted: 30 May 06 12:34 PM
|
fiogf49gjkf0d The built in QueMessage could do that if you're wanting to script out the sending of the mail (I've not tried it in a contact process though).
From the dev ref docs:
QueMessage ------------------------------------------
Available in The SalesLogix Client, the Support Client
Function The function populates the relevant parameters and displays the message editor. QueMessage can be by itself or with any of the listed parameters as long as the previous parameter is either filled in or blank. Be aware that some mail clients (or even Mailto: ) require an ASCII space for a blank value. The following example shows how "%20" would be used as:
QueMessage "me@home.com", "%20"
Object Application.BasicFunctions.QueMessage
Syntax QueMessage
Parameters ToAddress = To Address for the e- mail CCAddress = CC Address for the e-mail BCCAddress = BCCAddress for the e-mail Subject = Subject for the e-mail Body = Body of the e-mail Attach = Attachment path for the e-mail
Returns Boolean
|
|
|
|
Re: Contact Process Email
Posted: 30 May 06 12:36 PM
|
fiogf49gjkf0d Hmmm... that looks promising. Will have to see if I can get it to work.
Thanks! John G. |
|
|
|