API Reference
Class
Helpers
Utility class providing helper methods for email operations.
Inheritance
- Object
- Helpers
Methods
public static String HtmlEncode(String value) #Returns:
StringEncodes a string for safe HTML display. This method replaces special characters with their HTML entity equivalents,
Parameters
- value System.String
public static Boolean IsFileLocked(String fileName) #Returns:
BooleanChecks if file is locked/used by another process
Parameters
- fileName System.String
- The file name to check.
Returns
True if the file is locked, false otherwise.
public static Boolean Open(String filePath, Boolean open) #Returns:
BooleanOpens up any file using assigned Application
Parameters
- filePath System.String
- open System.Boolean
public static String UrlEncode(String url) #Returns:
StringEncodes a URL string for safe transmission in HTTP requests. This method replaces certain characters with their percent-encoded equivalents,
Parameters
- url System.String