Lines Matching refs:headers

88       $this->headers->set("X-LibVersion", $this->libVersion);
90 $this->headers->set("MIME-Version", "1.0");
156 $this->headers->set("Message-ID", $id);
185 return $this->headers->has("Message-ID") ? $this->headers->get("Message-ID") : null;
194 $this->headers->set("Return-Path", $address);
203 if ($this->headers->has("Return-Path"))
205 if (!$smtp) return $this->headers->get("Return-Path");
208 $path = $this->headers->get("Return-Path");
221 $this->headers->set("From", $from);
229 if ($this->headers->has("From")) return $this->headers->get("From");
245 $this->headers->set("To", $to);
253 if ($this->headers->has("To"))
255 $to = $this->headers->get("To");
274 $this->headers->set("Reply-To", $replyto);
282 if ($this->headers->has("Reply-To"))
284 $reply_to = $this->headers->get("Reply-To");
303 $this->headers->set("Cc", $cc);
311 if ($this->headers->has("Cc"))
313 $cc = $this->headers->get("Cc");
332 $this->headers->set("Bcc", $bcc);
340 if ($this->headers->has("Bcc"))
342 $bcc = $this->headers->get("Bcc");
353 $this->headers->set("Subject", $subject);
361 return $this->headers->get("Subject");
369 $this->headers->set("Date", date("r", $date));
377 return strtotime($this->headers->get("Date"));
385 $this->headers->setAttribute("Content-Type", "charset", $charset);
395 if ($this->headers->hasAttribute("Content-Type", "charset"))
397 return $this->headers->getAttribute("Content-Type", "charset");
412 $this->headers->setAttribute("Content-Type", "format", $value);
420 if ($this->headers->hasAttribute("Content-Type", "format")
421 && $this->headers->getAttribute("Content-Type", "format") == "flowed")
437 $this->headers->set("X-Priority", $priority);
438 $this->headers->set("X-MSMail-Priority", $label[$priority]);
439 $this->headers->set("X-MimeOLE", "Produced by SwiftMailer " . $this->libVersion);
450 $this->headers->set("Disposition-Notification-To", null);
451 $this->headers->set("X-Confirm-Reading-To", null);
452 $this->headers->set("Return-Receipt-To", null);
456 $this->headers->set("Disposition-Notification-To", $request);
457 $this->headers->set("X-Confirm-Reading-To", $request);
458 $this->headers->set("Return-Receipt-To", $request);
467 return $this->headers->has("Disposition-Notification-To");
476 if ($this->headers->has("X-Priority")) return $this->headers->get("X-Priority");