Home > Archive > Tcl > May 2004 > Sending email to CC recipients
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Sending email to CC recipients
|
|
|
| I want to send an email to someone who has 3 email addresses. So, I want to
put one email address in the To field and the other two email addresses in
the CC field.
But my code is not working. What am I doing wrong?
Thanks,
Jon
My code is below:
<et>
et clear recipients
et set recipient first@hotmail.com
et set "recipient_type" CC
et set recipient "second@ukr.net; third@megabank.net"
et set subject "Hi"
</et>Hi Vitaliy,
Thanks,
Jon
| |
| Bruce Hartweg 2004-05-19, 12:33 pm |
|
Jon wrote:
> I want to send an email to someone who has 3 email addresses. So, I want to
> put one email address in the To field and the other two email addresses in
> the CC field.
>
> But my code is not working. What am I doing wrong?
>
> Thanks,
>
> Jon
>
> My code is below:
> <et>
> et clear recipients
> et set recipient first@hotmail.com
> et set "recipient_type" CC
> et set recipient "second@ukr.net; third@megabank.net"
> et set subject "Hi"
> </et>Hi Vitaliy,
>
>
> Thanks,
>
> Jon
>
>
what language/package/extension/tool is this??
because it looks nothing like Tcl
Bruce
| |
| Kieran 2004-05-20, 2:32 am |
| Bruce Hartweg wrote:
>
> Jon wrote:
>
>
> what language/package/extension/tool is this??
> because it looks nothing like Tcl
>
It is Tcl, but embedded in a email processing application. See
<http://www.emailtemplates.com/et/scripting.aspx>.
I *think* this might work:
<et>
et clear recipients
et set recipient "first@hotmail.com"
et set recipient "second@ukr.net" "" CC
et set recipient "third@megabank.net" "" CC
</et>Hi Vitaliy,
Regards,
Kieran
|
|
|
|
|