Notifier

Notify you via email or text message when your functions finish or crash.
1,5K descargas
Actualizado 16 sep 2010

Ver licencia

Nota del editor: This file was selected as MATLAB Central Pick of the Week

notifier - Notifies you via email when a function finishes.

USAGE:
varargout = notifier(recipients, fh, varargin)

notifier is a wrapper for a sub function. It takes as input a list of recipients, a function handle, and arguments for the sub function. It then calls the sub function, passing in all the arguments, and notifies the recipients via email when the sub function completes. In the event of an error, the text of the error message is sent to the recipients via email. This is designed for long running functions, so you can leave the computer and be notified when to come back. This function uses sendmail to send notices, so make sure that sendmail is working properly before attempting to use this function. Sendmail accepts email addreses, but if your phone/carrier supports this feature, you can often use specially fomatted email addresses to send TXT messages to your mobile phone. For example, for Verizon Wireless, you can use the email address <phonenumber>vtext.com, such as 6175551212@vtext.com.

INPUT:
recipients - E-mail addresses to notify. Passed directly to sendmail,
so see the documentation for sendmail for formatting.
fh - Function handle for the sub function to run.
varargin - Input arguments passed directly to the sub function.

OUTPUT:
varargout - Output from the sub funtion is passed directly as output
from this function.

EXAMPLE:
Without notifier:
output = myfunc(arg1, arg2)
With notifier:
output = notifier('email@address.com', @myfunc, arg1, arg2)

Citar como

Benjamin Kraus (2024). Notifier (https://www.mathworks.com/matlabcentral/fileexchange/28733-notifier), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2010a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre MATLAB Mobile en Help Center y MATLAB Answers.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versión Publicado Notas de la versión
1.0.0.0