Skip to content

Commit

Permalink
Fixed typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
atrol committed Mar 18, 2015
1 parent f0235b7 commit 3ab4e79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/email_api.php
Expand Up @@ -901,7 +901,7 @@ function email_send( EmailData $p_email_data ) {
}

$t_mail->IsHTML( false ); # set email format to plain text
$t_mail->WordWrap = 80; # set word wrap to 50 characters
$t_mail->WordWrap = 80; # set word wrap to 80 characters
$t_mail->Priority = $t_email_data->metadata['priority']; # Urgent = 1, Not Urgent = 5, Disable = 0
$t_mail->CharSet = $t_email_data->metadata['charset'];
$t_mail->Host = config_get( 'smtp_host' );
Expand Down

0 comments on commit 3ab4e79

Please sign in to comment.