This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
php-frs/lib/Frs/Output/Transport/GScriptTransport.php
Markus Birth ba7520caad Test with Google Script to send mail. This works and seems to be the
only way without going through registration process with Google.
2017-02-04 01:26:18 +01:00

48 lines
1.1 KiB
PHP

<?php
namespace Frs\Output\Transport;
class GScriptTransport implements TransportInterface
{
private $content;
private $subject;
private $headers = array();
public function __construct()
{
$this->post_url = 'https://script.google.com/macros/s/AKfycbxVcugiTBTvWx8DK_HhuQh_vXdteir6GTXE_Anir3rfovatjQM/exec';
}
public function setParam($key, $value)
{
switch ($key) {
case 'to':
// ignored
break;
case 'subject':
$this->subject = $value;
break;
case 'headers':
$this->headers = $value;
break;
}
}
public function setContent($content)
{
$this->content = $content;
}
public function transmit()
{
echo '<html><body><form method="post" action="' . $this->post_url . '">';
echo '<input type="text" name="subject" value="' . $this->subject . '"/>';
echo '<textarea name="body">' . $this->content . '</textarea>';
echo '<input type="submit" value="Send"/>';
echo '</form></body></html>';
return true;
}
}