SendEmail

The SD.SendEmail function facilitates the sending of emails across a plethora of phones.

Overview

Purpose: Sends emails using the method determined by the currently active phone resource within the game, ensuring compatibility and proper functionality across different systems.

Resource List

  • qb-phone

  • qs-smartphone

  • high-phone

  • npwd-phone

  • lb-phone

  • yflip-phone

  • gks-phone

Parameters

  • sender (string): The identifier or email address of the sender.

  • subject (string): The subject line of the email.

  • message (string): The main content of the email.

Usage Example

-- Example usage of SD.SendEmail
SD.SendEmail(
    "john.doe@example.com",
    "Meeting Reminder",
    "Don't forget our meeting at 2 PM today."
)

Last updated