_setName

Sets the Name of an Email which Tasks will be Imported to.

Parameters

id

The ID of the email.

val

The Name of the email.

Example

FM_api('ImportTasksEmail_setName',[
    'id'=>'40123',
    'val'=>'New Task Imports'
    ]
);

Results

On Failure

If the "id" parameter is not given a value or has a value less than 1:

If the "val" parameter has no value after being trimmed:

If the "val" parameter has over 64 characters in length:

If the "id" parameter does not match the ID of an existing email:

On Success

If the "val" parameter matches the current Name given to the Email:

Last updated