Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
49d8233e
Commit
49d8233e
authored
15 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Isolate code for simplemail
parent
003208bc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/lib/CMailFile.class.php
+66
-18
66 additions, 18 deletions
htdocs/lib/CMailFile.class.php
with
66 additions
and
18 deletions
htdocs/lib/CMailFile.class.php
+
66
−
18
View file @
49d8233e
...
...
@@ -63,7 +63,7 @@ class CMailFile
//CSS
var
$css
;
var
$styleCSS
;
// Image
var
$html
;
var
$image_boundary
;
...
...
@@ -222,8 +222,9 @@ class CMailFile
require_once
(
DOL_DOCUMENT_ROOT
.
"/includes/simplemail/class.mail.php"
);
$mail
=
new
simplemail
();
$mail
->
set_mode
=
'php'
;
// php or socket
// Bundaries
// B
o
undaries
$mail
->
B1B
=
$this
->
mime_boundary
;
$mail
->
B2B
=
$this
->
related_boundary
;
$mail
->
B3B
=
$this
->
alternative_boundary
;
...
...
@@ -276,13 +277,13 @@ class CMailFile
if
(
$this
->
msgishtml
)
{
if
(
!
empty
(
$this
->
html
))
{
{
if
(
!
empty
(
$css
))
{
$this
->
css
=
$css
;
$this
->
styleCSS
=
$this
->
buildCSS
();
}
$msg
=
$this
->
html
;
$msg
=
$this
->
checkIfHTML
(
$msg
);
...
...
@@ -392,9 +393,8 @@ class CMailFile
if
(
empty
(
$conf
->
global
->
MAIN_DISABLE_ALL_MAILS
))
{
// Action according to choosed sending method
if
(
$conf
->
global
->
MAIN_MAIL_SENDMODE
==
'mail'
||
$conf
->
global
->
MAIN_MAIL_SENDMODE
==
'simplemail'
)
if
(
$conf
->
global
->
MAIN_MAIL_SENDMODE
==
'mail'
)
{
// Use mail php function (default PHP method)
// ------------------------------------------
dol_syslog
(
"CMailFile::sendfile addr_to="
.
$this
->
addr_to
.
", subject="
.
$this
->
subject
,
LOG_DEBUG
);
...
...
@@ -416,7 +416,7 @@ class CMailFile
if
(
!
$dest
&&
$conf
->
global
->
MAIN_MAIL_SENDMODE
==
'mail'
)
{
$this
->
error
=
"Failed to send mail to SMTP="
.
ini_get
(
'SMTP'
)
.
", PORT="
.
ini_get
(
'smtp_port'
)
.
"<br>Recipient address '
$dest
' invalid"
;
dol_syslog
(
"CMailFile::sendfile: mail end error="
.
$this
->
error
,
LOG_
DEBUG
);
dol_syslog
(
"CMailFile::sendfile: mail end error="
.
$this
->
error
,
LOG_
ERROR
);
}
else
{
...
...
@@ -435,19 +435,68 @@ class CMailFile
if
(
!
empty
(
$conf
->
global
->
MAIN_MAIL_DEBUG
))
$this
->
dump_mail
();
if
(
$conf
->
global
->
MAIN_MAIL_SENDMODE
==
'simplemail'
)
$res
=
mail
(
$dest
,
$this
->
encodetorfc2822
(
$this
->
subject
),
$this
->
message
,
$this
->
headers
,
$bounce
);
if
(
!
$res
)
{
$res
=
$this
->
simplemail
->
sendmail
();
$this
->
error
=
"Failed to send mail to SMTP="
.
ini_get
(
'SMTP'
)
.
", PORT="
.
ini_get
(
'smtp_port'
)
.
"<br>Check your server logs and your firewalls setup"
;
dol_syslog
(
"CMailFile::sendfile: mail end error="
.
$this
->
error
,
LOG_ERROR
);
}
else
{
$res
=
mail
(
$dest
,
$this
->
encodetorfc2822
(
$this
->
subject
),
$this
->
message
,
$this
->
headers
,
$bounce
);
dol_syslog
(
"CMailFile::sendfile: mail end success"
,
LOG_DEBUG
);
}
}
if
(
isset
(
$_SERVER
[
"WINDIR"
]))
{
@
ini_restore
(
'sendmail_from'
);
}
// Forcage parametres
if
(
!
empty
(
$conf
->
global
->
MAIN_MAIL_SMTP_SERVER
))
ini_restore
(
'SMTP'
);
if
(
!
empty
(
$conf
->
global
->
MAIN_MAIL_SMTP_PORT
))
ini_restore
(
'smtp_port'
);
}
else
if
(
$conf
->
global
->
MAIN_MAIL_SENDMODE
==
'simplemail'
)
{
// Use simplemmail function (Simplemail method)
// --------------------------------------------
dol_syslog
(
"CMailFile::sendfile addr_to="
.
$this
->
addr_to
.
", subject="
.
$this
->
subject
,
LOG_DEBUG
);
dol_syslog
(
"CMailFile::sendfile header=
\n
"
.
$this
->
headers
,
LOG_DEBUG
);
//dol_syslog("CMailFile::sendfile message=\n".$message);
// If Windows, sendmail_from must be defined
if
(
isset
(
$_SERVER
[
"WINDIR"
]))
{
if
(
empty
(
$this
->
addr_from
))
$this
->
addr_from
=
'robot@mydomain.com'
;
@
ini_set
(
'sendmail_from'
,
$this
->
getValidAddress
(
$this
->
addr_from
,
2
));
}
// Forcage parametres
if
(
!
empty
(
$conf
->
global
->
MAIN_MAIL_SMTP_SERVER
))
ini_set
(
'SMTP'
,
$conf
->
global
->
MAIN_MAIL_SMTP_SERVER
);
if
(
!
empty
(
$conf
->
global
->
MAIN_MAIL_SMTP_PORT
))
ini_set
(
'smtp_port'
,
$conf
->
global
->
MAIN_MAIL_SMTP_PORT
);
if
(
$conf
->
global
->
MAIN_MAIL_SENDMODE
==
'mail'
)
$dest
=
$this
->
getValidAddress
(
$this
->
addr_to
,
2
);
if
(
!
$dest
&&
$conf
->
global
->
MAIN_MAIL_SENDMODE
==
'mail'
)
{
$this
->
error
=
"Failed to send mail to SMTP="
.
ini_get
(
'SMTP'
)
.
", PORT="
.
ini_get
(
'smtp_port'
)
.
"<br>Recipient address '
$dest
' invalid"
;
dol_syslog
(
"CMailFile::sendfile: mail end error="
.
$this
->
error
,
LOG_ERROR
);
}
else
{
dol_syslog
(
"CMailFile::sendfile: mail start SMTP="
.
ini_get
(
'SMTP'
)
.
", PORT="
.
ini_get
(
'smtp_port'
),
LOG_DEBUG
);
$this
->
message
=
stripslashes
(
$this
->
message
);
if
(
!
empty
(
$conf
->
global
->
MAIN_MAIL_DEBUG
))
$this
->
dump_mail
();
$res
=
$this
->
simplemail
->
sendmail
();
if
(
!
$res
)
{
$this
->
error
=
"Failed to send mail to SMTP="
.
ini_get
(
'SMTP'
)
.
", PORT="
.
ini_get
(
'smtp_port'
)
.
"<br>Check your server logs and your firewalls setup"
;
dol_syslog
(
"CMailFile::sendfile: mail end error="
.
$this
->
error
,
LOG_DEBUG
);
$this
->
error
.
=
"
\n
"
.
$this
->
simplemail
->
error_log
;
dol_syslog
(
"CMailFile::sendfile: mail end error="
.
$this
->
error
,
LOG_ERR
);
}
else
{
...
...
@@ -482,7 +531,6 @@ class CMailFile
if
(
!
empty
(
$conf
->
global
->
MAIN_MAIL_SMTPS_PW
))
$this
->
smtps
->
setPW
(
$conf
->
global
->
MAIN_MAIL_SMTPS_PW
);
//$smtps->_msgReplyTo = 'reply@web.com';
$dest
=
$this
->
smtps
->
getFrom
(
'org'
);
if
(
!
$dest
)
{
...
...
@@ -710,7 +758,7 @@ class CMailFile
return
$out
;
}
/**
* Build a css style
*
...
...
@@ -719,12 +767,12 @@ class CMailFile
function
buildCSS
()
{
$out
=
''
;
if
(
!
empty
(
$this
->
css
))
{
$out
.
=
'<style type="text/css">'
;
$out
.
=
'body {'
;
if
(
$this
->
css
[
'bgcolor'
])
{
$out
.
=
' background-color: '
.
$this
->
css
[
'bgcolor'
]
.
';'
;
...
...
@@ -737,7 +785,7 @@ class CMailFile
$out
.
=
'}'
;
$out
.
=
'</style>'
;
}
return
$out
;
}
...
...
@@ -932,7 +980,7 @@ class CMailFile
foreach
(
$this
->
html_images
as
$img
)
{
$fullpath
=
$images_dir
.
'/'
.
$img
[
"name"
];
// If duplicate images are embedded, they may show up as attachments, so remove them.
if
(
!
in_array
(
$fullpath
,
$inline
))
{
...
...
@@ -942,7 +990,7 @@ class CMailFile
// On garde que le nom de l'image
eregi
(
'([A-Za-z0-9_-]+[.]?[A-Za-z0-9]+)?$'
,
$img
[
"name"
],
$regs
);
$imgName
=
$regs
[
1
];
$this
->
images_encoded
[
$i
][
'name'
]
=
$imgName
;
$this
->
images_encoded
[
$i
][
'content_type'
]
=
$img
[
"content_type"
];
$this
->
images_encoded
[
$i
][
'cid'
]
=
$img
[
"cid"
];
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment