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

send_image

send_image($from,$to,$subject,$image_path,$signature="",$cc="",$bcc="",$replyTo="",$timeout=300); - E-mail

:

  • $from
  • $to
  • $subject
  • $image_path
  • $signature HTML HTML
  • $cc
  • $bcc
  • $replyTo
  • $timeout ,

    :
  • true
  • false

    <?php
    // Scenario: Send an image 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. Close any existing Outlook instance
    WEB::$outlook->kill();
    
    // Step 2. Define variables for the operation
    $from = "test@test.ru";
    $to = "bigfozzy@gmail.com";
    $subject = "";
    $imagePath = "test/image.jpg";
    $signature = "<font color=red></font>";
    
    // Example 1. Send an image through Outlook
    echo "\nExample 1. Send an image through Outlook: ";
    $result = WEB::$outlook->send_image($from, $to, $subject, $imagePath, $signature);
    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:7026"
    from xweb_human_emulator import *
    
    # 
    echo("<hr><font color=blue>mail.xxxxxxxxx</font><hr>")
    
    outlook.kill();
    
    # 1
    echo("1.    outlook :");
    echo(outlook.send_image("bigfozzy@yandex.ru","bigfozzy@gmail.com","","test/image.jpg","<font color=red></font>"),"\n");
    
    # 
    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>");
    
    			outlook.kill();
    
    			// 1
    			echo("1.    outlook :");
    			echo(outlook.send_image("bigfozzy@yandex.ru","bigfozzy@gmail.com","","test/image.jpg","<font color=red></font>")+"\n");
    
                // 
                echo("\n");
    
                // Quit
                app.quit();
          }
    }
    xhe_host = "127.0.0.1:7026";
    echo=require("../../../Templates JS/init.js");
    
    // 
    echo("<hr><font color=blue>mail->send_mail_via_smtp</font><hr>");
    
    outlook.kill();
    
    // 1
    echo("1.    outlook :");
    echo(outlook.send_image("bigfozzy@yandex.ru","bigfozzy@gmail.com","","test/image.jpg","<font color=red></font>")+"\n");
    
    // 
    echo("\n");
    
    // Quit
    app.quit();

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