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
ef5c7f1c
Commit
ef5c7f1c
authored
15 years ago
by
Regis Houssin
Browse files
Options
Downloads
Patches
Plain Diff
Fix: If duplicate images are embedded, they may show up as attachments, so remove them.
parent
364c2474
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
htdocs/includes/simplemail/class.mail.php
+25
-19
25 additions, 19 deletions
htdocs/includes/simplemail/class.mail.php
htdocs/lib/CMailFile.class.php
+20
-14
20 additions, 14 deletions
htdocs/lib/CMailFile.class.php
with
45 additions
and
33 deletions
htdocs/includes/simplemail/class.mail.php
+
25
−
19
View file @
ef5c7f1c
...
...
@@ -135,31 +135,37 @@ class simplemail {
function
writeattachement
(
&
$attachement
,
$B
)
{
$message
=
''
;
$inline
=
array
();
if
(
!
empty
(
$attachement
)
)
{
foreach
(
$attachement
as
$AttmFile
){
$patharray
=
explode
(
"/"
,
$AttmFile
[
'filename'
]);
$FileName
=
$patharray
[
count
(
$patharray
)
-
1
];
$message
.
=
"
\n
--"
.
$B
.
"
\n
"
;
if
(
!
empty
(
$AttmFile
[
'cid'
]))
{
$message
.
=
"Content-Type:
{
$AttmFile
[
'contenttype'
]
}
;
\n
name=
\"
"
.
$FileName
.
"
\"\n
"
;
$message
.
=
"Content-Transfer-Encoding: base64
\n
"
;
$message
.
=
"Content-ID: <
{
$AttmFile
[
'cid'
]
}
>
\n
"
;
$message
.
=
"Content-Disposition: inline;
\n
filename=
\"
"
.
$FileName
.
"
\"\n\n
"
;
}
else
{
$message
.
=
"Content-Type: application/octetstream;
\n
name=
\"
"
.
$FileName
.
"
\"\n
"
;
$message
.
=
"Content-Transfer-Encoding: base64
\n
"
;
$message
.
=
"Content-Disposition: attachment;
\n
filename=
\"
"
.
$FileName
.
"
\"\n\n
"
;
// If duplicate images are embedded, they may show up as attachments, so remove them.
if
(
!
in_array
(
$AttmFile
[
'filename'
],
$inline
))
{
$message
.
=
"
\n
--"
.
$B
.
"
\n
"
;
if
(
!
empty
(
$AttmFile
[
'cid'
]))
{
$inline
[]
=
$AttmFile
[
'filename'
];
$message
.
=
"Content-Type:
{
$AttmFile
[
'contenttype'
]
}
;
\n
name=
\"
"
.
$FileName
.
"
\"\n
"
;
$message
.
=
"Content-Transfer-Encoding: base64
\n
"
;
$message
.
=
"Content-ID: <
{
$AttmFile
[
'cid'
]
}
>
\n
"
;
$message
.
=
"Content-Disposition: inline;
\n
filename=
\"
"
.
$FileName
.
"
\"\n\n
"
;
}
else
{
$message
.
=
"Content-Type: application/octetstream;
\n
name=
\"
"
.
$FileName
.
"
\"\n
"
;
$message
.
=
"Content-Transfer-Encoding: base64
\n
"
;
$message
.
=
"Content-Disposition: attachment;
\n
filename=
\"
"
.
$FileName
.
"
\"\n\n
"
;
}
$fd
=
fopen
(
$AttmFile
[
'filename'
],
"rb"
);
$FileContent
=
fread
(
$fd
,
filesize
(
$AttmFile
[
'filename'
]));
fclose
(
$fd
);
$FileContent
=
chunk_split
(
base64_encode
(
$FileContent
));
$message
.
=
$FileContent
;
$message
.
=
"
\n\n
"
;
}
$fd
=
fopen
(
$AttmFile
[
'filename'
],
"rb"
);
$FileContent
=
fread
(
$fd
,
filesize
(
$AttmFile
[
'filename'
]));
fclose
(
$fd
);
$FileContent
=
chunk_split
(
base64_encode
(
$FileContent
));
$message
.
=
$FileContent
;
$message
.
=
"
\n\n
"
;
}
$message
.
=
"
\n
--"
.
$B
.
"--
\n
"
;
}
...
...
This diff is collapsed.
Click to expand it.
htdocs/lib/CMailFile.class.php
+
20
−
14
View file @
ef5c7f1c
...
...
@@ -895,25 +895,31 @@ class CMailFile
if
(
!
empty
(
$this
->
html_images
))
{
// If duplicate images are embedded, they may show up as attachments, so remove them.
//$html_images = array_unique($this->html_images);
//sort($html_images);
$inline
=
array
();
$i
=
0
;
foreach
(
$this
->
html_images
as
$img
)
{
// Read imahe file
if
(
$image
=
file_get_contents
(
$images_dir
.
'/'
.
$img
[
"name"
]))
$fullpath
=
$images_dir
.
'/'
.
$img
[
"name"
];
// If duplicate images are embedded, they may show up as attachments, so remove them.
if
(
!
in_array
(
$fullpath
,
$inline
))
{
// 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"
];
// Encodage de l'image
$this
->
images_encoded
[
$i
][
"image_encoded"
]
=
chunk_split
(
base64_encode
(
$image
),
68
,
$this
->
eol
);
// Read image file
if
(
$image
=
file_get_contents
(
$fullpath
))
{
// 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"
];
// Encodage de l'image
$this
->
images_encoded
[
$i
][
"image_encoded"
]
=
chunk_split
(
base64_encode
(
$image
),
68
,
$this
->
eol
);
$inline
[]
=
$fullpath
;
}
}
$i
++
;
}
...
...
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