Auto-Email in Schematic Composer

Guest
Hi friends,

Is there any SKILL script that sends emails to notify other teamates
evey time when a schematic in Composer is modified?? Let's say, we
modified a schematic using Composer and an email will be sent
automatically to all receiptants to inform them of the modification.

Any guidance is highly appreciated.

Best regards,
Will
 
chickenwing2010@yahoo.com.hk wrote:

Is there any SKILL script that sends emails to notify other teamates
evey time when a schematic in Composer is modified?? Let's say, we
modified a schematic using Composer and an email will be sent
automatically to all receiptants to inform them of the modification.
Usually you would use a Version Control System to do that. They are
separately licensed and are not cheap. Then you can configure the VC System
to send and e-mail on every check-in (which is what you want I think).

Regards,
Satya

--
Remove XXX and YYY to get my address

--
Posted via a free Usenet account from http://www.teranews.com
 
If you just want to get an email sent, you can write a skill function
which will send the email to the team and register this skill function
to be called every time the user does check and save.

schRegPostCheckTrigger(
s_functionName
[ g_onceOnly ]
)
=> t | nil

Registers a function that will be called after a schematic is checked.
The called function must be defined to accept three arguments: the
cellview ID of the schematic, the number of errors encountered, and the
number of warnings encountered during the check.


You can probably confirm with the designer before sending with a pop-up:
"You have modified the schematic, Do you want to inform the team" [Yes/No]

Maybe you can have a multiline string field also in the form to capture
any comments.

regards,
Suresh

Satya wrote:
chickenwing2010@yahoo.com.hk wrote:

Is there any SKILL script that sends emails to notify other teamates
evey time when a schematic in Composer is modified?? Let's say, we
modified a schematic using Composer and an email will be sent
automatically to all receiptants to inform them of the modification.

Usually you would use a Version Control System to do that. They are
separately licensed and are not cheap. Then you can configure the VC System
to send and e-mail on every check-in (which is what you want I think).

Regards,
Satya

--
Remove XXX and YYY to get my address
 

Welcome to EDABoard.com

Sponsor

Back
Top