humanemulator.net — справка. Продукт, демо и покупка — на хуманэмулятор.рф | Демо | Купить | API | Changelog

send_mail

send_mail($from,$to,$subject,$message,$type,$cc="",$bcc="",$attachments=null,$timeout=300,$replyTo=""); - E-mail

$type :
0 - HTML;
1 - RTF;
2 - .
/

:

  • $from
  • $to
  • $subject
  • $message
  • $type E-mail
  • $cc
  • $bcc
  • $attachments -
  • $timeout ,
  • $replyTo

    :
  • true
  • false

    <?php
    // Scenario: Send an email through Outlook
    
    $xhe_host = getenv("RPABOT_HOST_URL");
    if (!isset($path)){
        // Path to the init.php file for connecting to the XHE API
        $path = "../../../Templates/init.php";
        // Including init.php grants access to all classes and functionality for working with the XHE API
        require($path);
    }
    
    // Step 1. Define variables for the operation
    $from = "test@test.ru";
    $to = "bigfozzy@mail.ru";
    $subject = "test";
    $body = "test message yahoo";
    $priority = 0;
    $cc = "test@test.ru";
    
    // Example 1. Send an email through Outlook
    echo "\nExample 1. Send an email through Outlook: ";
    $result = WEB::$outlook->send_mail($from, $to, $subject, $body, $priority, $cc);
    echo $result . "\n";
    
    echo "\n";
    
    // Quit
    WINDOW::$app->quit();
    ?>
    # Additional paths
    import sys
    sys.path.insert(0, '../../../Templates PY/')
    
    xhe_host = "127.0.0.1:7024"
    from xweb_human_emulator import *
    
    # 
    echo("<hr><font color=blue>mail.xxxxxxxxx</font><hr>")
    
    # 1
    echo("1.    outlook :");
    echo(outlook.send_mail("bigfozzy_tds@mail.ru","loginovskiyy-guriyy@mail.com","test","test message yahoo","0"));
    
    # 
    echo("<hr><br>")
    
    # Quit
    app.quit()
    #region using
    
    using System;
    using System.Diagnostics;
    using System.Collections.Generic;
    using System.Linq;
    using System.IO;
    using System.Text;
    using System.Threading;
    
    using XHE;
    using XHE.XHE_DOM;
    using XHE.XHE_System;
    using XHE.XHE_Window;
    using XHE.XHE_Web;
    
    #endregion
    
     class Program:XHEScript
     {
    	  static void Main(string[] args)
    	  {
    			// init XHE
    			server = Environment.GetEnvironmentVariable("RPABOT_HOST_URL");
    			InitXHE();
    
                // 
                echo("<hr><font color=blue>outlook->send_mail_via_smtp</font><hr>");
    
    			// 1
    			echo("1.    outlook :");
    			echo(outlook.send_mail("bigfozzy@yandex.ru","bigfozzy@gmail.com","test","test message yahoo","0"));
    
                // 
                echo("\n");
    
                // Quit
                app.quit();
          }
    }
    xhe_host = "127.0.0.1:7024";
    echo=require("../../../Templates JS/init.js");
    
    // 
    echo("<hr><font color=blue>mail->send_mail_via_smtp</font><hr>");
    
    // 1
    echo("1.    outlook :");
    echo(mail.send_mail_via_outlook("FionaPayne160@yahoo.com","loginovskiyy-guriyy@mail.com","test","test message yahoo",0)+"\n");
    
    // 
    echo("\n");
    
    // Quit
    app.quit();

    =============================================
    outlook        DOM  System  Vision  Web  Window        
    =============================================
    - ,
    .