forked from asika32764/Joomla-CMS-API-Document
-
Notifications
You must be signed in to change notification settings - Fork 0
/
elementindex_PHPMailer.html
1924 lines (1922 loc) · 95.4 KB
/
elementindex_PHPMailer.html
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
<?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" />
</head>
<body>
<a name="top"></a>
<h2>[PHPMailer] element index</h2>
<h3>Package indexes</h3>
<ul>
<li><a href="elementindex_Joomla-Administrator.html">Joomla-Administrator</a></li>
<li><a href="elementindex_default.html">default</a></li>
<li><a href="elementindex_Joomla-Site.html">Joomla-Site</a></li>
<li><a href="elementindex_akeebabackup.html">akeebabackup</a></li>
<li><a href="elementindex_Joomla-Language.html">Joomla-Language</a></li>
<li><a href="elementindex_Joomla-Platform.html">Joomla-Platform</a></li>
<li><a href="elementindex_Joomla-Cli.html">Joomla-Cli</a></li>
<li><a href="elementindex_Joomla-CLI.html">Joomla-CLI</a></li>
<li><a href="elementindex_Joomla-Installation.html">Joomla-Installation</a></li>
<li><a href="elementindex_Joomla-CMS.html">Joomla-CMS</a></li>
<li><a href="elementindex_Joomla-Libraries.html">Joomla-Libraries</a></li>
<li><a href="elementindex_Joomla-Legacy.html">Joomla-Legacy</a></li>
<li><a href="elementindex_Joomla-Compat.html">Joomla-Compat</a></li>
<li><a href="elementindex_IDNA.html">IDNA</a></li>
<li><a href="elementindex_phlyMail.html">phlyMail</a></li>
<li><a href="elementindex_Joomla.html">Joomla</a></li>
<li><a href="elementindex_utf8.html">utf8</a></li>
<li><a href="elementindex_SimplePie.html">SimplePie</a></li>
<li><a href="elementindex_Joomla-Plugin.html">Joomla-Plugin</a></li>
</ul>
<a href="elementindex.html">All elements</a>
<br />
<div class="index-letter-menu">
<a class="index-letter" href="elementindex_PHPMailer.html#a">a</a>
<a class="index-letter" href="elementindex_PHPMailer.html#b">b</a>
<a class="index-letter" href="elementindex_PHPMailer.html#c">c</a>
<a class="index-letter" href="elementindex_PHPMailer.html#d">d</a>
<a class="index-letter" href="elementindex_PHPMailer.html#e">e</a>
<a class="index-letter" href="elementindex_PHPMailer.html#f">f</a>
<a class="index-letter" href="elementindex_PHPMailer.html#g">g</a>
<a class="index-letter" href="elementindex_PHPMailer.html#h">h</a>
<a class="index-letter" href="elementindex_PHPMailer.html#i">i</a>
<a class="index-letter" href="elementindex_PHPMailer.html#l">l</a>
<a class="index-letter" href="elementindex_PHPMailer.html#m">m</a>
<a class="index-letter" href="elementindex_PHPMailer.html#n">n</a>
<a class="index-letter" href="elementindex_PHPMailer.html#p">p</a>
<a class="index-letter" href="elementindex_PHPMailer.html#q">q</a>
<a class="index-letter" href="elementindex_PHPMailer.html#r">r</a>
<a class="index-letter" href="elementindex_PHPMailer.html#s">s</a>
<a class="index-letter" href="elementindex_PHPMailer.html#t">t</a>
<a class="index-letter" href="elementindex_PHPMailer.html#u">u</a>
<a class="index-letter" href="elementindex_PHPMailer.html#v">v</a>
<a class="index-letter" href="elementindex_PHPMailer.html#w">w</a>
<a class="index-letter" href="elementindex_PHPMailer.html#x">x</a>
<a class="index-letter" href="elementindex_PHPMailer.html#_">_</a>
</div>
<a name="_"></a>
<div class="index-letter-section">
<div style="float: left" class="index-letter-title">_</div>
<div style="float: right"><a href="#top">top</a></div>
<div style="clear: both"></div>
</div>
<dl>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">_mime_types</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#method_mime_types">PHPMailer::_mime_types()</a> in phpmailer.php</div>
<div class="index-item-description">Gets the MIME type of the embedded or inline image</div>
</dd>
<dt class="field">
<img src="media/images/Constructor.png" alt="Method" title="Method" />
<span class="method-title">__construct</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/SMTP.html#method__construct">SMTP::__construct()</a> in 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">
<img src="media/images/Constructor.png" alt="Method" title="Method" />
<span class="method-title">__construct</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/POP3.html#method__construct">POP3::__construct()</a> in pop3.php</div>
<div class="index-item-description">Constructor, sets the initial values</div>
</dd>
<dt class="field">
<img src="media/images/Constructor.png" alt="Method" title="Method" />
<span class="method-title">__construct</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#method__construct">PHPMailer::__construct()</a> in phpmailer.php</div>
<div class="index-item-description">Constructor</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">__destruct</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#method__destruct">PHPMailer::__destruct()</a> in phpmailer.php</div>
<div class="index-item-description">Destructor</div>
</dd>
</dl>
<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">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$action_function</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$action_function">PHPMailer::$action_function</a> in phpmailer.php</div>
<div class="index-item-description">Callback Action function name.</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$AllowEmpty</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$AllowEmpty">PHPMailer::$AllowEmpty</a> in phpmailer.php</div>
<div class="index-item-description">Should we allow sending messages with empty body?</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$all_recipients</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$all_recipients">PHPMailer::$all_recipients</a> in phpmailer.php</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
<div class="index-item-description">The plain-text message body.</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$AuthType</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$AuthType">PHPMailer::$AuthType</a> in phpmailer.php</div>
<div class="index-item-description">Sets SMTP auth type. Options are LOGIN | PLAIN | NTLM | CRAM-MD5 (default LOGIN)</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Adds a "To" address.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">AddAnAddress</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAddAnAddress">PHPMailer::AddAnAddress()</a> in phpmailer.php</div>
<div class="index-item-description">Adds an address to one of the recipient arrays</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Adds an attachment from a path on the filesystem.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Adds a "Bcc" address.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Adds a "Cc" address.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Adds a custom header. $name value can be overloaded to contain</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Add an embedded attachment from a file.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">AddrAppend</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAddrAppend">PHPMailer::AddrAppend()</a> in phpmailer.php</div>
<div class="index-item-description">Creates recipient headers.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Adds a "Reply-to" address.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">AddrFormat</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAddrFormat">PHPMailer::AddrFormat()</a> in phpmailer.php</div>
<div class="index-item-description">Formats an address correctly.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Adds a string or binary attachment (non-filesystem) to the list.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">AddStringEmbeddedImage</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAddStringEmbeddedImage">PHPMailer::AddStringEmbeddedImage()</a> in phpmailer.php</div>
<div class="index-item-description">Add an embedded stringified attachment.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">AlternativeExists</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAlternativeExists">PHPMailer::AlternativeExists()</a> in phpmailer.php</div>
<div class="index-item-description">Does this message have an alternative body set?</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">AttachAll</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAttachAll">PHPMailer::AttachAll()</a> in phpmailer.php</div>
<div class="index-item-description">Attaches all fs, string, and binary attachments to the message.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">AttachmentExists</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodAttachmentExists">PHPMailer::AttachmentExists()</a> in phpmailer.php</div>
<div class="index-item-description">Returns true if an attachment (non-inline) is present.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 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">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 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">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
<div class="index-item-description">An HTML or plain text message body.</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">Base64EncodeWrapMB</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodBase64EncodeWrapMB">PHPMailer::Base64EncodeWrapMB()</a> in phpmailer.php</div>
<div class="index-item-description">Correctly encodes and wraps long multibyte strings for mail headers without breaking lines within a character.</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">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
<div class="index-item-description">Sets the CharSet of the message.</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
<div class="index-item-description">Sets the email address that a reading confirmation will be sent.</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
<div class="index-item-description">Sets the Content-type of the message.</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 smtp.php</div>
<div class="index-item-description">SMTP reply line ending (don't change)</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 pop3.php</div>
<div class="index-item-description">POP3 Carriage Return + Line Feed</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Clears all recipients assigned in the TO array. Returns void.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 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">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Clears all previously set filesystem, string, and binary attachments. Returns void.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Clears all recipients assigned in the BCC array. Returns void.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Clears all recipients assigned in the CC array. Returns void.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Clears all custom headers. Returns void.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Clears all recipients assigned in the ReplyTo array. Returns void.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">client_send</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodclient_send">SMTP::client_send()</a> in smtp.php</div>
<div class="index-item-description">Sends data to the server</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 smtp.php</div>
<div class="index-item-description">Closes the socket and cleans up the state of the class.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 pop3.php</div>
<div class="index-item-description">Connect to the POP3 server</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 smtp.php</div>
<div class="index-item-description">Connect to an SMTP server</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">Connected</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodConnected">SMTP::Connected()</a> in smtp.php</div>
<div class="index-item-description">Returns true if connected to a server otherwise false</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">CreateBody</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodCreateBody">PHPMailer::CreateBody()</a> in phpmailer.php</div>
<div class="index-item-description">Assembles the message body. Returns an empty string on failure.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">CreateHeader</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodCreateHeader">PHPMailer::CreateHeader()</a> in phpmailer.php</div>
<div class="index-item-description">Assembles message header.</div>
</dd>
<dt class="field">
<img src="media/images/Class Constant.png" alt="Class Constant" title="Class Constant" />
CRLF
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#constCRLF">PHPMailer::CRLF</a> in phpmailer.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">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$Debugoutput</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$Debugoutput">PHPMailer::$Debugoutput</a> in phpmailer.php</div>
<div class="index-item-description">Sets the function/method to use for debugging output.</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$Debugoutput</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/SMTP.html#var$Debugoutput">SMTP::$Debugoutput</a> in smtp.php</div>
<div class="index-item-description">Sets the function/method to use for debugging output.</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$DKIM_domain</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$DKIM_domain">PHPMailer::$DKIM_domain</a> in phpmailer.php</div>
<div class="index-item-description">Used with DKIM Singing</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$DKIM_identity</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$DKIM_identity">PHPMailer::$DKIM_identity</a> in phpmailer.php</div>
<div class="index-item-description">Used with DKIM Signing</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$DKIM_passphrase</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$DKIM_passphrase">PHPMailer::$DKIM_passphrase</a> in phpmailer.php</div>
<div class="index-item-description">Used with DKIM Signing</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$DKIM_private</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$DKIM_private">PHPMailer::$DKIM_private</a> in phpmailer.php</div>
<div class="index-item-description">Used with DKIM Signing</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$DKIM_selector</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$DKIM_selector">PHPMailer::$DKIM_selector</a> in phpmailer.php</div>
<div class="index-item-description">Used with DKIM Signing required parameter if DKIM is enabled</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 pop3.php</div>
<div class="index-item-description">Displaying Debug warnings? (0 = now, 1+ = yes)</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 smtp.php</div>
<div class="index-item-description">Debug output level; 0 for no output</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 smtp.php</div>
<div class="index-item-description">Sets VERP use on/off (default is off)</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$do_verp</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$do_verp">PHPMailer::$do_verp</a> in phpmailer.php</div>
<div class="index-item-description">Should we generate VERP addresses when sending via SMTP?</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 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">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 pop3.php</div>
<div class="index-item-description">Disconnect from the POP3 server</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">DKIM_Add</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodDKIM_Add">PHPMailer::DKIM_Add()</a> in phpmailer.php</div>
<div class="index-item-description">Create the DKIM header, body, as new header</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">DKIM_BodyC</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodDKIM_BodyC">PHPMailer::DKIM_BodyC()</a> in phpmailer.php</div>
<div class="index-item-description">Generate DKIM Canonicalization Body</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">DKIM_HeaderC</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodDKIM_HeaderC">PHPMailer::DKIM_HeaderC()</a> in phpmailer.php</div>
<div class="index-item-description">Generate DKIM Canonicalization Header</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">DKIM_QP</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodDKIM_QP">PHPMailer::DKIM_QP()</a> in phpmailer.php</div>
<div class="index-item-description">Set the private key file and password to sign the message.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">DKIM_Sign</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodDKIM_Sign">PHPMailer::DKIM_Sign()</a> in phpmailer.php</div>
<div class="index-item-description">Generate DKIM signature</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">doCallback</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methoddoCallback">PHPMailer::doCallback()</a> in phpmailer.php</div>
<div class="index-item-description">Perform callback</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">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
<div class="index-item-description">Sets the Encoding of the message. Options for this are "8bit", "7bit", "binary", "base64", and "quoted-printable".</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$error</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/SMTP.html#var$error">SMTP::$error</a> in smtp.php</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
<div class="index-item-description">Holds the most recent mailer error message.</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$exceptions</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#var$exceptions">PHPMailer::$exceptions</a> in phpmailer.php</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">edebug</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodedebug">SMTP::edebug()</a> in smtp.php</div>
<div class="index-item-description">Outputs debugging info via user-defined method</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">edebug</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodedebug">PHPMailer::edebug()</a> in phpmailer.php</div>
<div class="index-item-description">Outputs debugging info via user-defined method</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">EncodeFile</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodEncodeFile">PHPMailer::EncodeFile()</a> in phpmailer.php</div>
<div class="index-item-description">Encodes attachment in requested format.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">EncodeHeader</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodEncodeHeader">PHPMailer::EncodeHeader()</a> in phpmailer.php</div>
<div class="index-item-description">Encode a header string to best (shortest) of Q, B, quoted or none.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">EncodeQ</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodEncodeQ">PHPMailer::EncodeQ()</a> in phpmailer.php</div>
<div class="index-item-description">Encode string to q encoding.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">EncodeQP</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodEncodeQP">PHPMailer::EncodeQP()</a> in phpmailer.php</div>
<div class="index-item-description">Encode string to RFC2045 (6.7) quoted-printable format</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">EncodeQPphp</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodEncodeQPphp">PHPMailer::EncodeQPphp()</a> in phpmailer.php</div>
<div class="index-item-description">Wrapper to preserve BC for old QP encoding function that was removed</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">EncodeString</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodEncodeString">PHPMailer::EncodeString()</a> in phpmailer.php</div>
<div class="index-item-description">Encodes string to requested format.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">EndBoundary</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodEndBoundary">PHPMailer::EndBoundary()</a> in phpmailer.php</div>
<div class="index-item-description">Returns the end of a message boundary.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">errorMessage</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/phpmailerException.html#methoderrorMessage">phpmailerException::errorMessage()</a> in phpmailer.php</div>
<div class="index-item-description">Prettify error message output</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">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
<div class="index-item-description">Sets the From email address for the message.</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
<div class="index-item-description">Sets the From name of the message.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">filenameToType</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodfilenameToType">PHPMailer::filenameToType()</a> in phpmailer.php</div>
<div class="index-item-description">Try to map a file name to a MIME type, default to application/octet-stream</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">FixEOL</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodFixEOL">PHPMailer::FixEOL()</a> in phpmailer.php</div>
<div class="index-item-description">Changes every end of line from CRLF, CR or LF to $this->LE.</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">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">GetAttachments</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodGetAttachments">PHPMailer::GetAttachments()</a> in phpmailer.php</div>
<div class="index-item-description">Return the current array of attachments</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">GetBoundary</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodGetBoundary">PHPMailer::GetBoundary()</a> in phpmailer.php</div>
<div class="index-item-description">Returns the start of a message boundary.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">getError</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodgetError">SMTP::getError()</a> in smtp.php</div>
<div class="index-item-description">Get the current error</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">GetMailMIME</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodGetMailMIME">PHPMailer::GetMailMIME()</a> in phpmailer.php</div>
<div class="index-item-description">Returns the message MIME.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">GetSentMIMEMessage</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodGetSentMIMEMessage">PHPMailer::GetSentMIMEMessage()</a> in phpmailer.php</div>
<div class="index-item-description">Returns the MIME message (headers and body). Only really valid post PreSend().</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">GetTranslations</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodGetTranslations">PHPMailer::GetTranslations()</a> in phpmailer.php</div>
<div class="index-item-description">Return the current array of language strings</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">get_lines</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodget_lines">SMTP::get_lines()</a> in smtp.php</div>
<div class="index-item-description">Read in as many lines as possible either before eof or socket timeout occurs on the operation.</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">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
<div class="index-item-description">Sets the SMTP HELO of the message (Default is $Hostname).</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<span class="var-title">$helo_rply</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/SMTP.html#var$helo_rply">SMTP::$helo_rply</a> in smtp.php</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 phpmailer.php</div>
<div class="index-item-description">Sets the SMTP hosts.</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 pop3.php</div>
<div class="index-item-description">POP3 Mail Server</div>
</dd>
<dt class="field">
<img src="media/images/Variable.png" alt="Variable" title="Variable" />
<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 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">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">HasMultiBytes</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodHasMultiBytes">PHPMailer::HasMultiBytes()</a> in phpmailer.php</div>
<div class="index-item-description">Checks if a string contains multibyte characters.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 phpmailer.php</div>
<div class="index-item-description">Returns a formatted header line.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<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 smtp.php</div>
<div class="index-item-description">Sends the HELO command to the smtp server.</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">hmac</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/SMTP.html#methodhmac">SMTP::hmac()</a> in smtp.php</div>
<div class="index-item-description">Works like hash_hmac('md5', $data, $key) in case that function is not available</div>
</dd>
<dt class="field">
<img src="media/images/Method.png" alt="Method" title="Method" />
<span class="method-title">html2text</span>
</dt>
<dd class="index-item-body">
<div class="index-item-details"><a href="PHPMailer/PHPMailer.html#methodhtml2text">PHPMailer::html2text()</a> in phpmailer.php</div>
<div class="index-item-description">Convert an HTML string into a plain text version</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>