PHP code example of myzend / email

1. Go to this page and download the library: Download myzend/email library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

myzend / email example snippets


/*
 * Admin mail
 */
$email = $this->email->create(array("html_content" => "this is a notice", "subject" => "error"));
$this->email->send($email);

/*
 * Using template variables
 */
$email = $this->email->create(array(
							"name" => "I. Pascual",
							"location" => "Barcelona"
						));
$email->setTemplateName("welcome");
$email->addTo("[email protected]", "Ignacio Pascual");
$this->email->send($email);

/**
 * Without templates
 */
$email = $this->email->create();
$email->setSubject("Test");
$email->setTextContent("Hi, this is a test!");
$email->setHtmlContent("<h1>Hi,</h1> <p>this is a test!</p>");
$email->addTo("[email protected]", "Ignacio Pascual");
$this->email->send($email);

	'email' => array(
		"template_path_stack" => array(
				__DIR__ . "/../view/email/"
		),
	),

	'email' => array(
		"template_path_stack" => array(
				__DIR__ . "/../view/email/"
		),
	),
	
$email = $this->email->create();
$email->setTemplateName("MODULE/example");
$email->addTo("[email protected]", "Ignacio Pascual");
$this->email->send($email);

	
return array(
	'email' => array(
		"active" => true,
		"defaults" => array(
				"layout_name" => "default",
				"from_email" => "[email protected]",
				"from_name" => "MyZend Project"
		),
		"emails" => array(
			"support" => "[email protected]",
			"admin" => "[email protected]"
		),
		'template_vars' => array(
			"company" => "MyZend Project",
			"slogan" => "",
			"baseUrl" => "http://www.yourproject.com"
		),
		'relay' => array(
			'active'	=> false,
			'host'		=> '', 
			'port'		=> '', // it could be empty
			'username'	=> '',
			'password'	=> '',
			'ssl'		=> '' // it could be empty
		)
	)
);