Home
last modified time | relevance | path

Searched refs:subject (Results 1 – 25 of 853) sorted by relevance

12345678910>>...35

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DNativeMailerHandler.php35 protected $subject; variable in Monolog\\Handler\\NativeMailerHandler
69 * @param string $subject The subject of the mail
73 …public function __construct($to, string $subject, string $from, $level = Logger::ERROR, bool $bubb… argument
77 $this->subject = $subject;
128 $subject = $this->subject;
130 $subjectFormatter = new LineFormatter($this->subject);
131 $subject = $subjectFormatter->format($this->getHighestRecord($records));
136 mail($to, $subject, $content, $headers, $parameters);
H A DSendGridHandler.php51 protected $subject; variable in Monolog\\Handler\\SendGridHandler
58 * @param string $subject The subject of the mail
60 …public function __construct(string $apiUser, string $apiKey, string $from, $to, string $subject, $… argument
71 $this->subject = $subject;
86 $message['subject'] = $this->subject;
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DIMipPlugin.php118 $subject = 'SabreDAV iTIP message';
121 $subject = 'Re: ' . $summary;
124 $subject = $summary;
127 $subject = 'Cancelled: ' . $summary;
141 $subject,
156 * @param string $subject Subject of the email
161 protected function mail($to, $subject, $body, array $headers) { argument
163 mail($to, $subject, $body, implode("\r\n", $headers));
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DIMipPlugin.php118 $subject = 'SabreDAV iTIP message';
121 $subject = 'Re: ' . $summary;
124 $subject = $summary;
127 $subject = 'Cancelled: ' . $summary;
141 $subject,
156 * @param string $subject Subject of the email
161 protected function mail($to, $subject, $body, array $headers) { argument
163 mail($to, $subject, $body, implode("\r\n", $headers));
/plugin/freechat/phpfreechat/data/public/js/
H A Dactivity.js3 initialize: function(subject) argument
7 this.subject = subject;
9 Event.observe(subject, 'mousemove', this._OnFocus.bindAsEventListener(this), false);
10 Event.observe(subject, 'mouseout', this._OnBlur.bindAsEventListener(this), false);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Connectors/
H A DJwtClaims.php33 public $subject; variable in Google\\Service\\Connectors\\JwtClaims
66 public function setSubject($subject) argument
68 $this->subject = $subject;
75 return $this->subject;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleRpcPreconditionFailureViolation.php29 public $subject; variable in Google\\Service\\Apigee\\GoogleRpcPreconditionFailureViolation
52 public function setSubject($subject) argument
54 $this->subject = $subject;
61 return $this->subject;
H A DGoogleCloudApigeeV1CertInfo.php54 public $subject; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1CertInfo
169 public function setSubject($subject) argument
171 $this->subject = $subject;
178 return $this->subject;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ManagedServiceforMicrosoftActiveDirectoryConsumerAPI/
H A DCertificate.php32 public $subject; variable in Google\\Service\\ManagedServiceforMicrosoftActiveDirectoryConsumerAPI\\Certificate
73 public function setSubject($subject) argument
75 $this->subject = $subject;
82 return $this->subject;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IdentityToolkit/
H A DEmailTemplate.php45 public $subject; variable in Google\\Service\\IdentityToolkit\\EmailTemplate
120 public function setSubject($subject) argument
122 $this->subject = $subject;
129 return $this->subject;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudIot/
H A DX509CertificateDetails.php45 public $subject; variable in Google\\Service\\CloudIot\\X509CertificateDetails
120 public function setSubject($subject) argument
122 $this->subject = $subject;
129 return $this->subject;
/plugin/issuetracker/
H A Dedit.php41 $subject = mb_encode_mimeheader($subject, "UTF-8", "Q" );
73 mail_send($to, $subject, $body, $from, $cc, $bcc='', $headers=null, $params=null);
91 $subject = sprintf($lang['issueassigned_subject'], $issue['id'], $project);
92 $subject = mb_encode_mimeheader($subject, "UTF-8", "Q" );
133 $subject = utf8_deaccent($subject);
134 $subject = utf8_strip($subject);
137 if(!utf8_isASCII($subject)) {
138 $subject = '=?UTF-8?Q?'.mail_quotedprintable_encode($subject,0).'?=';
140 $subject = preg_replace('/ /', '_', $subject);
172 return @mail($to,$subject,$message,$header);
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Util/
H A DRegexTest.php35 public function testValidRegex($pattern, $subject, $return) argument
37 $this->assertEquals($return, PHPUnit_Util_Regex::pregMatchSafe($pattern, $subject));
43 public function testInvalidRegex($pattern, $subject) argument
45 $this->assertFalse(PHPUnit_Util_Regex::pregMatchSafe($pattern, $subject));
/plugin/bibtex/OSBib/format/
H A DPARSESTYLE.php22 function parseStringToArray($type, $subject, $map = FALSE) argument
24 if(!$subject)
29 $subjectArray = split("\|", $subject);
33 foreach($subjectArray as $subject)
38 preg_match("/(.*)(?<!`|[a-zA-Z])($search)(?!`|[a-zA-Z])(.*)/", $subject, $array);
43 $independent['independent_' . ($index - 1)] = $subject;
48 $independent['independent_' . $index] = $subject;
/plugin/smtp/subtree/txtthinking/Mailer/src/Mailer/
H A DMessage.php49 protected $subject; variable in Tx\\Mailer\\Message
138 * @param string $subject
141 public function setSubject($subject){ argument
142 $this->subject = $subject;
224 return $this->subject;
263 $this->header['Subject'] = $this->subject;
/plugin/commonmark/vendor/league/commonmark/src/Util/
H A DRegexHelper.php130 public static function matchFirst(string $pattern, string $subject, int $offset = 0): ?array
133 $subject = \substr($subject, $offset);
136 \preg_match_all($pattern, $subject, $matches, \PREG_SET_ORDER);
108 matchAll(string $pattern, string $subject, int $offset = 0) global() argument
139 matchFirst(string $pattern, string $subject, int $offset = 0) global() argument
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CertificateAuthorityService/
H A DSubjectConfig.php30 public function setSubject(Subject $subject) argument
32 $this->subject = $subject;
39 return $this->subject;
H A DSubjectDescription.php102 public function setSubject(Subject $subject) argument
104 $this->subject = $subject;
111 return $this->subject;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudKMS/
H A DCertificate.php54 public $subject; variable in Google\\Service\\CloudKMS\\Certificate
161 public function setSubject($subject) argument
163 $this->subject = $subject;
170 return $this->subject;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Gmail/
H A DFilterCriteria.php53 public $subject; variable in Google\\Service\\Gmail\\FilterCriteria
160 public function setSubject($subject) argument
162 $this->subject = $subject;
169 return $this->subject;
/plugin/contact/
H A Dsyntax.php97 $subject = $_REQUEST['subject'];
117 …if (eregi("\r",$subject) || eregi("\n",$subject) || eregi("MIME-Version: ",$subject) || eregi("Con…
133 if (mail_send($to, $subject, $comment, $to)){
/plugin/authgooglesheets/vendor/google/apiclient-services/src/YouTube/
H A DAbuseReport.php79 public function setSubject(Entity $subject) argument
81 $this->subject = $subject;
88 return $this->subject;
/plugin/loglog/helper/
H A Dmain.php59 * @param string $subject
63 public function sendEmail($email, $subject, $text, $textrep = []) argument
69 $mail->subject($subject);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OnDemandScanning/
H A DInTotoStatement.php100 public function setSubject($subject) argument
102 $this->subject = $subject;
109 return $this->subject;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/
H A DInTotoStatement.php100 public function setSubject($subject) argument
102 $this->subject = $subject;
109 return $this->subject;

12345678910>>...35