Send Mail to User

Input Type

  • Username or email - support 2 types

  • Title - Email Title

  • Message - Message Content

OnCompleted

On Completed Delegate

PHP

send_user_mail.php
```php
    $headers = "From: no-reply@yourdomain.com\r\n";  
    $headers .= "Reply-To: support@yourdomain.com\r\n";  
```
Change email -> to your own email

Example

Example use for {username} variable in php

```php
str_replace("{username}", $username, $emailMessage); 
```

Use Temp Email to received

the {username} variable already be replace successful

Last updated