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
3122944a
Commit
3122944a
authored
10 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Email html format was missing br.
parent
95b5094e
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/public/paybox/paymentok.php
+20
-8
20 additions, 8 deletions
htdocs/public/paybox/paymentok.php
htdocs/public/paypal/paymentok.php
+18
-18
18 additions, 18 deletions
htdocs/public/paypal/paymentok.php
with
38 additions
and
26 deletions
htdocs/public/paybox/paymentok.php
+
20
−
8
View file @
3122944a
...
...
@@ -26,7 +26,7 @@
define
(
"NOLOGIN"
,
1
);
// This means this output page does not require to be logged.
define
(
"NOCSRFCHECK"
,
1
);
// We accept to go on this page from external web site.
// For MultiCompany module.
// For MultiCompany module.
// Do not use GETPOST here, function is not defined and define must be done before including main.inc.php
// TODO This should be useless. Because entity must be retreive from object ref and not from url.
$entity
=
(
!
empty
(
$_GET
[
'entity'
])
?
(
int
)
$_GET
[
'entity'
]
:
(
!
empty
(
$_POST
[
'entity'
])
?
(
int
)
$_POST
[
'entity'
]
:
1
));
...
...
@@ -111,15 +111,27 @@ if (! empty($conf->global->PAYBOX_PAYONLINE_SENDEMAIL))
$urlback
=
$_SERVER
[
"REQUEST_URI"
];
$topic
=
'['
.
$conf
->
global
->
MAIN_APPLICATION_TITLE
.
'] '
.
$langs
->
transnoentitiesnoconv
(
"NewPayboxPaymentReceived"
);
$tmptag
=
dolExplodeIntoArray
(
$fulltag
,
'.'
,
'='
);
$content
=
""
;
$content
.
=
$langs
->
transnoentitiesnoconv
(
"NewPayboxPaymentReceived"
)
.
"
\n
"
;
$content
.
=
"
\n
"
;
$content
.
=
$langs
->
transnoentitiesnoconv
(
"TechnicalInformation"
)
.
":
\n
"
;
$content
.
=
$langs
->
transnoentitiesnoconv
(
"ReturnURLAfterPayment"
)
.
': '
.
$urlback
.
"
\n
"
;
$content
.
=
"tag="
.
$fulltag
.
"
\n
"
;
if
(
!
empty
(
$tmptag
[
'MEM'
]))
{
$langs
->
load
(
"members"
);
$url
=
$urlwithroot
.
"/adherents/card_subscriptions.php?rowid="
.
$tmptag
[
'MEM'
];
$content
.
=
$langs
->
trans
(
"PaymentSubscription"
)
.
"<br>
\n
"
;
$content
.
=
$langs
->
trans
(
"MemberId"
)
.
': '
.
$tmptag
[
'MEM'
]
.
"<br>
\n
"
;
$content
.
=
$langs
->
trans
(
"Link"
)
.
': <a href="'
.
$url
.
'">'
.
$url
.
'</a>'
.
"<br>
\n
"
;
}
else
{
$content
.
=
$langs
->
transnoentitiesnoconv
(
"NewPayboxPaymentReceived"
)
.
"<br>
\n
"
;
}
$content
.
=
"<br>
\n
"
;
$content
.
=
$langs
->
transnoentitiesnoconv
(
"TechnicalInformation"
)
.
":<br>
\n
"
;
$content
.
=
$langs
->
transnoentitiesnoconv
(
"ReturnURLAfterPayment"
)
.
': '
.
$urlback
.
"<br>
\n
"
;
$content
.
=
"tag="
.
$fulltag
.
"<br>
\n
"
;
$ishtml
=
dol_textishtml
(
$content
);
// May contain urls
require_once
DOL_DOCUMENT_ROOT
.
'/core/class/CMailFile.class.php'
;
$mailfile
=
new
CMailFile
(
$topic
,
$sendto
,
$from
,
$content
,
array
(),
array
(),
array
(),
''
,
''
,
0
,
$ishtml
);
...
...
This diff is collapsed.
Click to expand it.
htdocs/public/paypal/paymentok.php
+
18
−
18
View file @
3122944a
...
...
@@ -29,7 +29,7 @@
define
(
"NOLOGIN"
,
1
);
// This means this output page does not require to be logged.
define
(
"NOCSRFCHECK"
,
1
);
// We accept to go on this page from external web site.
// For MultiCompany module.
// For MultiCompany module.
// Do not use GETPOST here, function is not defined and define must be done before including main.inc.php
// TODO This should be useless. Because entity must be retreive from object ref and not from url.
$entity
=
(
!
empty
(
$_GET
[
'entity'
])
?
(
int
)
$_GET
[
'entity'
]
:
(
!
empty
(
$_POST
[
'entity'
])
?
(
int
)
$_POST
[
'entity'
]
:
1
));
...
...
@@ -167,7 +167,7 @@ if ($PAYPALTOKEN)
$result
=
$interface
->
run_triggers
(
'PAYPAL_PAYMENT_OK'
,
$object
,
$user
,
$langs
,
$conf
);
if
(
$result
<
0
)
{
$error
++
;
$errors
=
$interface
->
errors
;
}
// Fin appel triggers
// Send an email
if
(
!
empty
(
$conf
->
global
->
PAYPAL_PAYONLINE_SENDEMAIL
))
{
...
...
@@ -177,7 +177,7 @@ if ($PAYPALTOKEN)
$urlwithouturlroot
=
preg_replace
(
'/'
.
preg_quote
(
DOL_URL_ROOT
,
'/'
)
.
'$/i'
,
''
,
trim
(
$dolibarr_main_url_root
));
$urlwithroot
=
$urlwithouturlroot
.
DOL_URL_ROOT
;
// This is to use external domain name found into config file
//$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
$urlback
=
$_SERVER
[
"REQUEST_URI"
];
$topic
=
'['
.
$conf
->
global
->
MAIN_APPLICATION_TITLE
.
'] '
.
$langs
->
transnoentitiesnoconv
(
"NewPaypalPaymentReceived"
);
$tmptag
=
dolExplodeIntoArray
(
$fulltag
,
'.'
,
'='
);
...
...
@@ -186,24 +186,24 @@ if ($PAYPALTOKEN)
{
$langs
->
load
(
"members"
);
$url
=
$urlwithroot
.
"/adherents/card_subscriptions.php?rowid="
.
$tmptag
[
'MEM'
];
$content
.
=
$langs
->
trans
(
"PaymentSubscription"
)
.
"
\n
"
;
$content
.
=
$langs
->
trans
(
"MemberId"
)
.
': '
.
$tmptag
[
'MEM'
]
.
"
\n
"
;
$content
.
=
$langs
->
trans
(
"Link"
)
.
': <a href="'
.
$url
.
'">'
.
$url
.
'</a>'
.
"
\n
"
;
$content
.
=
$langs
->
trans
(
"PaymentSubscription"
)
.
"
<br>
\n
"
;
$content
.
=
$langs
->
trans
(
"MemberId"
)
.
': '
.
$tmptag
[
'MEM'
]
.
"
<br>
\n
"
;
$content
.
=
$langs
->
trans
(
"Link"
)
.
': <a href="'
.
$url
.
'">'
.
$url
.
'</a>'
.
"
<br>
\n
"
;
}
else
else
{
$content
.
=
$langs
->
transnoentitiesnoconv
(
"NewPaypalPaymentReceived"
)
.
"
\n
"
;
$content
.
=
$langs
->
transnoentitiesnoconv
(
"NewPaypalPaymentReceived"
)
.
"
<br>
\n
"
;
}
$content
.
=
"
\n
"
;
$content
.
=
$langs
->
transnoentitiesnoconv
(
"TechnicalInformation"
)
.
":
\n
"
;
$content
.
=
$langs
->
transnoentitiesnoconv
(
"ReturnURLAfterPayment"
)
.
': '
.
$urlback
.
"
\n
"
;
$content
.
=
"
<br>
\n
"
;
$content
.
=
$langs
->
transnoentitiesnoconv
(
"TechnicalInformation"
)
.
":
<br>
\n
"
;
$content
.
=
$langs
->
transnoentitiesnoconv
(
"ReturnURLAfterPayment"
)
.
': '
.
$urlback
.
"
<br>
\n
"
;
$content
.
=
"tag="
.
$fulltag
.
" token="
.
$token
.
" paymentType="
.
$paymentType
.
" currencycodeType="
.
$currencyCodeType
.
" payerId="
.
$payerID
.
" ipaddress="
.
$ipaddress
.
" FinalPaymentAmt="
.
$FinalPaymentAmt
;
$ishtml
=
dol_textishtml
(
$content
);
// May contain urls
require_once
DOL_DOCUMENT_ROOT
.
'/core/class/CMailFile.class.php'
;
$mailfile
=
new
CMailFile
(
$topic
,
$sendto
,
$from
,
$content
,
array
(),
array
(),
array
(),
''
,
''
,
0
,
$ishtml
);
$result
=
$mailfile
->
sendfile
();
if
(
$result
)
{
...
...
@@ -230,7 +230,7 @@ if ($PAYPALTOKEN)
echo
"Error Severity Code: "
.
$ErrorSeverityCode
.
"<br>
\n
"
;
if
(
$mysoc
->
email
)
echo
"
\n
Please, send a screenshot of this page to "
.
$mysoc
->
email
.
"<br>
\n
"
;
// Send an email
if
(
!
empty
(
$conf
->
global
->
PAYPAL_PAYONLINE_SENDEMAIL
))
{
...
...
@@ -240,7 +240,7 @@ if ($PAYPALTOKEN)
$urlwithouturlroot
=
preg_replace
(
'/'
.
preg_quote
(
DOL_URL_ROOT
,
'/'
)
.
'$/i'
,
''
,
trim
(
$dolibarr_main_url_root
));
$urlwithroot
=
$urlwithouturlroot
.
DOL_URL_ROOT
;
// This is to use external domain name found into config file
//$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
$urlback
=
$_SERVER
[
"REQUEST_URI"
];
$topic
=
'['
.
$conf
->
global
->
MAIN_APPLICATION_TITLE
.
'] '
.
$langs
->
transnoentitiesnoconv
(
"ValidationOfPaypalPaymentFailed"
);
$content
=
""
;
...
...
@@ -249,12 +249,12 @@ if ($PAYPALTOKEN)
$content
.
=
$langs
->
transnoentitiesnoconv
(
"TechnicalInformation"
)
.
":
\n
"
;
$content
.
=
$langs
->
transnoentitiesnoconv
(
"ReturnURLAfterPayment"
)
.
': '
.
$urlback
.
"
\n
"
;
$content
.
=
"tag="
.
$fulltag
.
"
\n
token="
.
$token
.
" paymentType="
.
$paymentType
.
" currencycodeType="
.
$currencyCodeType
.
" payerId="
.
$payerID
.
" ipaddress="
.
$ipaddress
.
" FinalPaymentAmt="
.
$FinalPaymentAmt
;
$ishtml
=
dol_textishtml
(
$content
);
// May contain urls
require_once
DOL_DOCUMENT_ROOT
.
'/core/class/CMailFile.class.php'
;
$mailfile
=
new
CMailFile
(
$topic
,
$sendto
,
$from
,
$content
,
array
(),
array
(),
array
(),
''
,
''
,
0
,
$ishtml
);
$result
=
$mailfile
->
sendfile
();
if
(
$result
)
{
...
...
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