elementindex.html 49 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml">
		<head>
			<!-- template designed by Marco Von Ballmoos -->
			<title></title>
			<link rel="stylesheet" href="media/stylesheet.css" />
			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
		</head>
		<body>
						<a name="top"></a>
<h2>Full index</h2>
<h3>Package indexes</h3>
<ul>
	<li><a href="elementindex_PHPMailer.html">PHPMailer</a></li>
</ul>
<br />
<div class="index-letter-menu">
	<a class="index-letter" href="elementindex.html#a">a</a>
	<a class="index-letter" href="elementindex.html#b">b</a>
	<a class="index-letter" href="elementindex.html#c">c</a>
	<a class="index-letter" href="elementindex.html#d">d</a>
	<a class="index-letter" href="elementindex.html#e">e</a>
	<a class="index-letter" href="elementindex.html#f">f</a>
	<a class="index-letter" href="elementindex.html#g">g</a>
	<a class="index-letter" href="elementindex.html#h">h</a>
	<a class="index-letter" href="elementindex.html#i">i</a>
	<a class="index-letter" href="elementindex.html#l">l</a>
	<a class="index-letter" href="elementindex.html#m">m</a>
	<a class="index-letter" href="elementindex.html#n">n</a>
	<a class="index-letter" href="elementindex.html#p">p</a>
	<a class="index-letter" href="elementindex.html#q">q</a>
	<a class="index-letter" href="elementindex.html#r">r</a>
	<a class="index-letter" href="elementindex.html#s">s</a>
	<a class="index-letter" href="elementindex.html#t">t</a>
	<a class="index-letter" href="elementindex.html#u">u</a>
	<a class="index-letter" href="elementindex.html#v">v</a>
	<a class="index-letter" href="elementindex.html#w">w</a>
</div>

	<a name="a"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">a</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$AltBody</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$AltBody">PHPMailer::$AltBody</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the text-only body of the message.  This automatically sets the  email to multipart/alternative.  This body can be read by mail  clients that do not have HTML email capability such as mutt. Clients  that can read HTML will view the normal Body.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$attachment</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$attachment">PHPMailer::$attachment</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="method-title">AddAddress</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAddAddress">PHPMailer::AddAddress()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Adds a &quot;To&quot; address.</div>
					</dd>
			<dt class="field">
						<span class="method-title">AddAttachment</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAddAttachment">PHPMailer::AddAttachment()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Adds an attachment from a path on the filesystem.</div>
					</dd>
			<dt class="field">
						<span class="method-title">AddBCC</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAddBCC">PHPMailer::AddBCC()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Adds a &quot;Bcc&quot; address. Note: this function works  with the SMTP mailer on win32, not with the &quot;mail&quot;  mailer.</div>
					</dd>
			<dt class="field">
						<span class="method-title">AddCC</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAddCC">PHPMailer::AddCC()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Adds a &quot;Cc&quot; address. Note: this function works  with the SMTP mailer on win32, not with the &quot;mail&quot;  mailer.</div>
					</dd>
			<dt class="field">
						<span class="method-title">AddCustomHeader</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAddCustomHeader">PHPMailer::AddCustomHeader()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Adds a custom header.</div>
					</dd>
			<dt class="field">
						<span class="method-title">AddEmbeddedImage</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAddEmbeddedImage">PHPMailer::AddEmbeddedImage()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Adds an embedded attachment.  This can include images, sounds, and  just about any other document.  Make sure to set the $type to an  image type.  For JPEG images use &quot;image/jpeg&quot; and for GIF images  use &quot;image/gif&quot;.</div>
					</dd>
			<dt class="field">
						<span class="method-title">AddReplyTo</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAddReplyTo">PHPMailer::AddReplyTo()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Adds a &quot;Reply-To&quot; address.</div>
					</dd>
			<dt class="field">
						<span class="method-title">AddStringAttachment</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAddStringAttachment">PHPMailer::AddStringAttachment()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Adds a string or binary attachment (non-filesystem) to the list.</div>
					</dd>
			<dt class="field">
						<span class="method-title">Authenticate</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodAuthenticate">SMTP::Authenticate()</a> in class.smtp.php</div>
							<div class="index-item-description">Performs SMTP authentication.  Must be run after running the  Hello() method.  Returns true if successfully authenticated.</div>
					</dd>
			<dt class="field">
						<span class="method-title">Authorise</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#methodAuthorise">POP3::Authorise()</a> in class.pop3.php</div>
							<div class="index-item-description">Combination of public events - connect, login, disconnect</div>
					</dd>
		</dl>
	<a name="b"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">b</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$bcc</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$bcc">PHPMailer::$bcc</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="var-title">$Body</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Body">PHPMailer::$Body</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the Body of the message.  This can be either an HTML or text body.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$boundary</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$boundary">PHPMailer::$boundary</a> in class.phpmailer.php</div>
					</dd>
		</dl>
	<a name="c"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">c</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$cc</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$cc">PHPMailer::$cc</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="var-title">$CharSet</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$CharSet">PHPMailer::$CharSet</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the CharSet of the message.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$ConfirmReadingTo</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$ConfirmReadingTo">PHPMailer::$ConfirmReadingTo</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the email address that a reading confirmation will be sent.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$ContentType</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$ContentType">PHPMailer::$ContentType</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the Content-type of the message.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$CRLF</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#var$CRLF">SMTP::$CRLF</a> in class.smtp.php</div>
							<div class="index-item-description">SMTP reply line ending</div>
					</dd>
			<dt class="field">
						<span class="var-title">$CRLF</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#var$CRLF">POP3::$CRLF</a> in class.pop3.php</div>
							<div class="index-item-description">POP3 Carriage Return + Line Feed</div>
					</dd>
			<dt class="field">
						<span class="var-title">$CustomHeader</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$CustomHeader">PHPMailer::$CustomHeader</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="method-title">catchWarning</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#methodcatchWarning">POP3::catchWarning()</a> in class.pop3.php</div>
							<div class="index-item-description">Takes over from PHP for the socket warning handler</div>
					</dd>
			<dt class="field">
						<span class="method-title">checkResponse</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#methodcheckResponse">POP3::checkResponse()</a> in class.pop3.php</div>
							<div class="index-item-description">Checks the POP3 server response for +OK or -ERR</div>
					</dd>
			<dt class="field">
						<span class="method-title">ClearAddresses</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodClearAddresses">PHPMailer::ClearAddresses()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Clears all recipients assigned in the TO array.  Returns void.</div>
					</dd>
			<dt class="field">
						<span class="method-title">ClearAllRecipients</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodClearAllRecipients">PHPMailer::ClearAllRecipients()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Clears all recipients assigned in the TO, CC and BCC  array.  Returns void.</div>
					</dd>
			<dt class="field">
						<span class="method-title">ClearAttachments</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodClearAttachments">PHPMailer::ClearAttachments()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Clears all previously set filesystem, string, and binary  attachments.  Returns void.</div>
					</dd>
			<dt class="field">
						<span class="method-title">ClearBCCs</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodClearBCCs">PHPMailer::ClearBCCs()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Clears all recipients assigned in the BCC array.  Returns void.</div>
					</dd>
			<dt class="field">
						<span class="method-title">ClearCCs</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodClearCCs">PHPMailer::ClearCCs()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Clears all recipients assigned in the CC array.  Returns void.</div>
					</dd>
			<dt class="field">
						<span class="method-title">ClearCustomHeaders</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodClearCustomHeaders">PHPMailer::ClearCustomHeaders()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Clears all custom headers.  Returns void.</div>
					</dd>
			<dt class="field">
						<span class="method-title">ClearReplyTos</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodClearReplyTos">PHPMailer::ClearReplyTos()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Clears all recipients assigned in the ReplyTo array.  Returns void.</div>
					</dd>
			<dt class="field">
						<span class="method-title">Close</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodClose">SMTP::Close()</a> in class.smtp.php</div>
							<div class="index-item-description">Closes the socket and cleans up the state of the class.</div>
					</dd>
			<dt class="field">
						<span class="method-title">Connect</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodConnect">SMTP::Connect()</a> in class.smtp.php</div>
							<div class="index-item-description">Connect to the server specified on the port specified.</div>
					</dd>
			<dt class="field">
						<span class="method-title">Connect</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#methodConnect">POP3::Connect()</a> in class.pop3.php</div>
							<div class="index-item-description">Connect to the POP3 server</div>
					</dd>
			<dt class="field">
						<span class="include-title">class.phpmailer.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/_v2.0.4_PHPMailer_v2.0.4_class_phpmailer_php.html">class.phpmailer.php</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="include-title">class.pop3.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/_v2.0.4_PHPMailer_v2.0.4_class_pop3_php.html">class.pop3.php</a> in class.pop3.php</div>
					</dd>
			<dt class="field">
						<span class="include-title">class.smtp.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/_v2.0.4_PHPMailer_v2.0.4_class_smtp_php.html">class.smtp.php</a> in class.smtp.php</div>
					</dd>
		</dl>
	<a name="d"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">d</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$do_debug</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#var$do_debug">SMTP::$do_debug</a> in class.smtp.php</div>
							<div class="index-item-description">Sets whether debugging is turned on</div>
					</dd>
			<dt class="field">
						<span class="var-title">$do_debug</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#var$do_debug">POP3::$do_debug</a> in class.pop3.php</div>
							<div class="index-item-description">Displaying Debug warnings? (0 = now, 1+ = yes)</div>
					</dd>
			<dt class="field">
						<span class="var-title">$do_verp</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#var$do_verp">SMTP::$do_verp</a> in class.smtp.php</div>
							<div class="index-item-description">Sets VERP use on/off (default is off)</div>
					</dd>
			<dt class="field">
						<span class="method-title">Data</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodData">SMTP::Data()</a> in class.smtp.php</div>
							<div class="index-item-description">Issues a data command and sends the msg_data to the server</div>
					</dd>
			<dt class="field">
						<span class="method-title">Disconnect</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#methodDisconnect">POP3::Disconnect()</a> in class.pop3.php</div>
							<div class="index-item-description">Disconnect from the POP3 server</div>
					</dd>
			<dt class="field">
						<span class="method-title">displayErrors</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#methoddisplayErrors">POP3::displayErrors()</a> in class.pop3.php</div>
							<div class="index-item-description">If debug is enabled, display the error message array</div>
					</dd>
		</dl>
	<a name="e"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">e</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$Encoding</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Encoding">PHPMailer::$Encoding</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the Encoding of the message. Options for this are &quot;8bit&quot;,  &quot;7bit&quot;, &quot;binary&quot;, &quot;base64&quot;, and &quot;quoted-printable&quot;.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$ErrorInfo</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$ErrorInfo">PHPMailer::$ErrorInfo</a> in class.phpmailer.php</div>
							<div class="index-item-description">Holds the most recent mailer error message.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$error_count</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$error_count">PHPMailer::$error_count</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="method-title">Expand</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodExpand">SMTP::Expand()</a> in class.smtp.php</div>
							<div class="index-item-description">Expand takes the name and asks the server to list all the  people who are members of the _list_. Expand will return  back and array of the result or false if an error occurs.</div>
					</dd>
		</dl>
	<a name="f"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">f</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$From</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$From">PHPMailer::$From</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the From email address for the message.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$FromName</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$FromName">PHPMailer::$FromName</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the From name of the message.</div>
					</dd>
		</dl>
	<a name="g"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">g</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="method-title">getFile</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodgetFile">PHPMailer::getFile()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Read a file from a supplied filename and return it.</div>
					</dd>
			<dt class="field">
						<span class="method-title">getResponse</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#methodgetResponse">POP3::getResponse()</a> in class.pop3.php</div>
							<div class="index-item-description">Get the socket response back.</div>
					</dd>
		</dl>
	<a name="h"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">h</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$Helo</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Helo">PHPMailer::$Helo</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the SMTP HELO of the message (Default is $Hostname).</div>
					</dd>
			<dt class="field">
						<span class="var-title">$Host</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Host">PHPMailer::$Host</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the SMTP hosts.  All hosts must be separated by a  semicolon.  You can also specify a different port  for each host by using this format: [hostname:port]  (e.g. &quot;smtp1.example.com:25;smtp2.example.com&quot;).</div>
					</dd>
			<dt class="field">
						<span class="var-title">$host</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#var$host">POP3::$host</a> in class.pop3.php</div>
							<div class="index-item-description">POP3 Mail Server</div>
					</dd>
			<dt class="field">
						<span class="var-title">$Hostname</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Hostname">PHPMailer::$Hostname</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the hostname to use in Message-Id and Received headers  and as default HELO string. If empty, the value returned  by SERVER_NAME is used or 'localhost.localdomain'.</div>
					</dd>
			<dt class="field">
						<span class="method-title">HeaderLine</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodHeaderLine">PHPMailer::HeaderLine()</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="method-title">Hello</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodHello">SMTP::Hello()</a> in class.smtp.php</div>
							<div class="index-item-description">Sends the HELO command to the smtp server.</div>
					</dd>
			<dt class="field">
						<span class="method-title">Help</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodHelp">SMTP::Help()</a> in class.smtp.php</div>
							<div class="index-item-description">Gets help information on the keyword specified. If the keyword</div>
					</dd>
		</dl>
	<a name="i"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">i</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="method-title">IsError</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodIsError">PHPMailer::IsError()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Returns true if an error occurred.</div>
					</dd>
			<dt class="field">
						<span class="method-title">IsHTML</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodIsHTML">PHPMailer::IsHTML()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets message type to HTML.</div>
					</dd>
			<dt class="field">
						<span class="method-title">IsMail</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodIsMail">PHPMailer::IsMail()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets Mailer to send message using PHP mail() function.</div>
					</dd>
			<dt class="field">
						<span class="method-title">IsQmail</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodIsQmail">PHPMailer::IsQmail()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets Mailer to send message using the qmail MTA.</div>
					</dd>
			<dt class="field">
						<span class="method-title">IsSendmail</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodIsSendmail">PHPMailer::IsSendmail()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets Mailer to send message using the $Sendmail program.</div>
					</dd>
			<dt class="field">
						<span class="method-title">IsSMTP</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodIsSMTP">PHPMailer::IsSMTP()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets Mailer to send message using SMTP.</div>
					</dd>
		</dl>
	<a name="l"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">l</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$language</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$language">PHPMailer::$language</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="var-title">$LE</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$LE">PHPMailer::$LE</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="method-title">Login</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#methodLogin">POP3::Login()</a> in class.pop3.php</div>
							<div class="index-item-description">Login to the POP3 server (does not support APOP yet)</div>
					</dd>
		</dl>
	<a name="m"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">m</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$Mailer</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Mailer">PHPMailer::$Mailer</a> in class.phpmailer.php</div>
							<div class="index-item-description">Method to send mail: (&quot;mail&quot;, &quot;sendmail&quot;, or &quot;smtp&quot;).</div>
					</dd>
			<dt class="field">
						<span class="var-title">$MessageID</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$MessageID">PHPMailer::$MessageID</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the message ID to be used in the Message-Id header.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$message_type</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$message_type">PHPMailer::$message_type</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="method-title">Mail</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodMail">SMTP::Mail()</a> in class.smtp.php</div>
							<div class="index-item-description">Starts a mail transaction from the email address specified in  $from. Returns true if successful or false otherwise. If True  the mail transaction is started and then one or more Recipient  commands may be called followed by a Data command.</div>
					</dd>
			<dt class="field">
						<span class="method-title">MsgHTML</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodMsgHTML">PHPMailer::MsgHTML()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Evaluates the message and returns modifications for inline images and backgrounds</div>
					</dd>
		</dl>
	<a name="n"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">n</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="method-title">Noop</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodNoop">SMTP::Noop()</a> in class.smtp.php</div>
							<div class="index-item-description">Sends the command NOOP to the SMTP server.</div>
					</dd>
		</dl>
	<a name="p"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">p</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$Password</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Password">PHPMailer::$Password</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets SMTP password.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$password</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#var$password">POP3::$password</a> in class.pop3.php</div>
							<div class="index-item-description">POP3 Password</div>
					</dd>
			<dt class="field">
						<span class="var-title">$PluginDir</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$PluginDir">PHPMailer::$PluginDir</a> in class.phpmailer.php</div>
							<div class="index-item-description">Path to PHPMailer plugins.  This is now only useful if the SMTP class  is in a different directory than the PHP include path.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$POP3_PORT</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#var$POP3_PORT">POP3::$POP3_PORT</a> in class.pop3.php</div>
							<div class="index-item-description">Default POP3 port</div>
					</dd>
			<dt class="field">
						<span class="var-title">$POP3_TIMEOUT</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#var$POP3_TIMEOUT">POP3::$POP3_TIMEOUT</a> in class.pop3.php</div>
							<div class="index-item-description">Default Timeout</div>
					</dd>
			<dt class="field">
						<span class="var-title">$Port</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Port">PHPMailer::$Port</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the default SMTP server port.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$port</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#var$port">POP3::$port</a> in class.pop3.php</div>
							<div class="index-item-description">POP3 Port</div>
					</dd>
			<dt class="field">
						<span class="var-title">$Priority</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Priority">PHPMailer::$Priority</a> in class.phpmailer.php</div>
							<div class="index-item-description">Email priority (1 = High, 3 = Normal, 5 = low).</div>
					</dd>
			<dt class="field">
						PHPMailer
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html">PHPMailer</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="method-title">POP3</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#methodPOP3">POP3::POP3()</a> in class.pop3.php</div>
							<div class="index-item-description">Constructor, sets the initial values</div>
					</dd>
			<dt class="field">
						POP3
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html">POP3</a> in class.pop3.php</div>
					</dd>
		</dl>
	<a name="q"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">q</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="method-title">Quit</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodQuit">SMTP::Quit()</a> in class.smtp.php</div>
							<div class="index-item-description">Sends the quit command to the server and then closes the socket  if there is no error or the $close_on_error argument is true.</div>
					</dd>
		</dl>
	<a name="r"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">r</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$ReplyTo</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$ReplyTo">PHPMailer::$ReplyTo</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="method-title">Recipient</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodRecipient">SMTP::Recipient()</a> in class.smtp.php</div>
							<div class="index-item-description">Sends the command RCPT to the SMTP server with the TO: argument of $to.</div>
					</dd>
			<dt class="field">
						<span class="method-title">Reset</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodReset">SMTP::Reset()</a> in class.smtp.php</div>
							<div class="index-item-description">Sends the RSET command to abort and transaction that is  currently in progress. Returns true if successful false  otherwise.</div>
					</dd>
		</dl>
	<a name="s"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">s</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$Sender</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Sender">PHPMailer::$Sender</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the Sender email (Return-Path) of the message.  If not empty,  will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$Sendmail</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Sendmail">PHPMailer::$Sendmail</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the path of the sendmail program.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$sign_cert_file</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$sign_cert_file">PHPMailer::$sign_cert_file</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="var-title">$sign_key_file</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$sign_key_file">PHPMailer::$sign_key_file</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="var-title">$sign_key_pass</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$sign_key_pass">PHPMailer::$sign_key_pass</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="var-title">$SingleTo</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$SingleTo">PHPMailer::$SingleTo</a> in class.phpmailer.php</div>
							<div class="index-item-description">Provides the ability to have the TO field process individual</div>
					</dd>
			<dt class="field">
						<span class="var-title">$smtp</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$smtp">PHPMailer::$smtp</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="var-title">$SMTPAuth</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$SMTPAuth">PHPMailer::$SMTPAuth</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets SMTP authentication. Utilizes the Username and Password variables.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$SMTPDebug</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$SMTPDebug">PHPMailer::$SMTPDebug</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets SMTP class debugging on or off.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$SMTPKeepAlive</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$SMTPKeepAlive">PHPMailer::$SMTPKeepAlive</a> in class.phpmailer.php</div>
							<div class="index-item-description">Prevents the SMTP connection from being closed after each mail  sending.  If this is set to true then to close the connection  requires an explicit call to SmtpClose().</div>
					</dd>
			<dt class="field">
						<span class="var-title">$SMTPSecure</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$SMTPSecure">PHPMailer::$SMTPSecure</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets connection prefix.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$SMTP_PORT</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#var$SMTP_PORT">SMTP::$SMTP_PORT</a> in class.smtp.php</div>
							<div class="index-item-description">SMTP server port</div>
					</dd>
			<dt class="field">
						<span class="var-title">$Subject</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Subject">PHPMailer::$Subject</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the Subject of the message.</div>
					</dd>
			<dt class="field">
						<span class="method-title">Send</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodSend">SMTP::Send()</a> in class.smtp.php</div>
							<div class="index-item-description">Starts a mail transaction from the email address specified in</div>
					</dd>
			<dt class="field">
						<span class="method-title">Send</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodSend">PHPMailer::Send()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Creates message and assigns Mailer. If the message is  not sent successfully then it returns false.  Use the ErrorInfo  variable to view description of the error.</div>
					</dd>
			<dt class="field">
						<span class="method-title">SendAndMail</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodSendAndMail">SMTP::SendAndMail()</a> in class.smtp.php</div>
							<div class="index-item-description">Starts a mail transaction from the email address specified in</div>
					</dd>
			<dt class="field">
						<span class="method-title">SendOrMail</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodSendOrMail">SMTP::SendOrMail()</a> in class.smtp.php</div>
							<div class="index-item-description">Starts a mail transaction from the email address specified in</div>
					</dd>
			<dt class="field">
						<span class="method-title">sendString</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#methodsendString">POP3::sendString()</a> in class.pop3.php</div>
							<div class="index-item-description">Send a string down the open socket connection to the POP3 server</div>
					</dd>
			<dt class="field">
						<span class="method-title">set</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodset">PHPMailer::set()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Set (or reset) Class Objects (variables)</div>
					</dd>
			<dt class="field">
						<span class="method-title">SetLanguage</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodSetLanguage">PHPMailer::SetLanguage()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the language for all class error messages.  Returns false  if it cannot load the language file.  The default language type  is English.</div>
					</dd>
			<dt class="field">
						<span class="method-title">Sign</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodSign">PHPMailer::Sign()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Set the private key file and password to sign the message.</div>
					</dd>
			<dt class="field">
						SMTP
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html">SMTP</a> in class.smtp.php</div>
					</dd>
			<dt class="field">
						<span class="method-title">SMTP</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodSMTP">SMTP::SMTP()</a> in class.smtp.php</div>
							<div class="index-item-description">Initialize the class so that the data is in a known state.</div>
					</dd>
			<dt class="field">
						<span class="method-title">SmtpClose</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodSmtpClose">PHPMailer::SmtpClose()</a> in class.phpmailer.php</div>
							<div class="index-item-description">Closes the active SMTP session if one exists.</div>
					</dd>
		</dl>
	<a name="t"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">t</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$Timeout</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Timeout">PHPMailer::$Timeout</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets the SMTP server timeout in seconds. This function will not  work with the win32 version.</div>
					</dd>
			<dt class="field">
						<span class="var-title">$to</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$to">PHPMailer::$to</a> in class.phpmailer.php</div>
					</dd>
			<dt class="field">
						<span class="var-title">$tval</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#var$tval">POP3::$tval</a> in class.pop3.php</div>
							<div class="index-item-description">POP3 Timeout Value</div>
					</dd>
			<dt class="field">
						<span class="method-title">Turn</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodTurn">SMTP::Turn()</a> in class.smtp.php</div>
							<div class="index-item-description">This is an optional command for SMTP that this class does not  support. This method is here to make the RFC821 Definition  complete for this class and __may__ be implimented in the future</div>
					</dd>
		</dl>
	<a name="u"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">u</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$username</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/POP3.html#var$username">POP3::$username</a> in class.pop3.php</div>
							<div class="index-item-description">POP3 Username</div>
					</dd>
			<dt class="field">
						<span class="var-title">$Username</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Username">PHPMailer::$Username</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets SMTP username.</div>
					</dd>
		</dl>
	<a name="v"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">v</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$Version</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Version">PHPMailer::$Version</a> in class.phpmailer.php</div>
							<div class="index-item-description">Holds PHPMailer version.</div>
					</dd>
			<dt class="field">
						<span class="method-title">Verify</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodVerify">SMTP::Verify()</a> in class.smtp.php</div>
							<div class="index-item-description">Verifies that the name is recognized by the server.</div>
					</dd>
		</dl>
	<a name="w"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">w</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<span class="var-title">$WordWrap</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$WordWrap">PHPMailer::$WordWrap</a> in class.phpmailer.php</div>
							<div class="index-item-description">Sets word wrapping on the body of the message to a given number of  characters.</div>
					</dd>
		</dl>

<div class="index-letter-menu">
	<a class="index-letter" href="elementindex.html#a">a</a>
	<a class="index-letter" href="elementindex.html#b">b</a>
	<a class="index-letter" href="elementindex.html#c">c</a>
	<a class="index-letter" href="elementindex.html#d">d</a>
	<a class="index-letter" href="elementindex.html#e">e</a>
	<a class="index-letter" href="elementindex.html#f">f</a>
	<a class="index-letter" href="elementindex.html#g">g</a>
	<a class="index-letter" href="elementindex.html#h">h</a>
	<a class="index-letter" href="elementindex.html#i">i</a>
	<a class="index-letter" href="elementindex.html#l">l</a>
	<a class="index-letter" href="elementindex.html#m">m</a>
	<a class="index-letter" href="elementindex.html#n">n</a>
	<a class="index-letter" href="elementindex.html#p">p</a>
	<a class="index-letter" href="elementindex.html#q">q</a>
	<a class="index-letter" href="elementindex.html#r">r</a>
	<a class="index-letter" href="elementindex.html#s">s</a>
	<a class="index-letter" href="elementindex.html#t">t</a>
	<a class="index-letter" href="elementindex.html#u">u</a>
	<a class="index-letter" href="elementindex.html#v">v</a>
	<a class="index-letter" href="elementindex.html#w">w</a>
</div>	</body>
</html>