/
var
/
www
/
doncode.com.ua
/
www
/
lib
/
sendgrid
/
lib
/
contacts
/
/var/www/doncode.com.ua/www/lib/sendgrid/lib/contacts
mkdir
upload
Name
Size
Mode
Actions
README.md
562
0644
edit
dl
rm
Recipient.php
2016
0644
edit
dl
rm
RecipientForm.php
1046
0644
edit
dl
rm
Edit:
/var/www/doncode.com.ua/www/lib/sendgrid/lib/contacts/RecipientForm.php
(1046B)
<?php /** * This helper builds a html form and provides a submission endpoint * for the form that makes a /contactdb/recipients API call. */ namespace SendGrid\Contacts; /** * This class is used to build a html form and provides a submission * endpoint for the form that makes a /contactdb/recipients API call. * * @package SendGrid\Contacts */ class RecipientForm { /** @var $html string HTML content for the form */ private $html; /** * Form constructor * * @param string $url The url the form should submit to */ public function __construct($url) { $html = '<form action="' . $url . '" method="post"> First Name: <input type="text" name="first-name"><br> Last Name: <input type="text" name="last-name"><br> E-mail: <input type="text" name="email"><br> <input type="submit"> </form>'; $this->html = $html; } /** * Return the HTML form * * @return string */ public function __toString() { return $this->html; } }
Save
First Name:
Last Name:
E-mail:
'; $this->html = $html; } /** * Return the HTML form * * @return string */ public function __toString() { return $this->html; } }