The Charity for Civil Servants (RFA & RMAS)
Charity Number: 1136870
Contact: Help and Advisory Section
Address: 5 Anne Boleyn's Walk, Cheam, Surrey
Postcode: SM3 8DY
Phone: 020 8240 2400 (switchboard) OR 0800 056 2424 (Helpline)
Website: www.foryoubyyou.org.uk
Email: info@foryoubyyou.org.uk
Summary: The Charity for Civil Servants is the leading charity for current and former civil servants and their dependants. The Charity gives advice and funds to people who are struggling quickly, efficiently and in complete confidence.
Note/Restrictions: Minimum length of service is usually six months; help is offered UK-wide. Applicants are current, former and retired civil servants and their dependants and those in associated organisations. Within the maritime sector specifically, help is given to serving and retired members of the RFA and their widows and dependants.
Related Articles
Royal Fleet Auxiliary Association (RFA & RMAS)
Charity Number: 1093950 Address: 48 Mays Lane, Fareham, Hampshire Postcode: PO14 2EN Phone: 01329 512 506 (but initial contact preferred by email) Website: www.rfa-association.org Email: chairman@rfa-association.org Summary: To further the efficiency ...
Royal Fleet Auxiliary Association (RFAA) Welfare Fund
Contact details Website: https://rfaa.uk/welfare/ Organisation: Royal Fleet Auxiliary Association (RFAA) Welfare Fund Welfare Email: welfare@rfaa.uk Welfare Telephone: 01233 622911 Mobile: 07786 370054 Welfare Director: Martin Troman Regional Welfare ...
Health & Welfare Financial Grants
Provided by Seafarers Hospital Society (SHS) Telephone: 020 8858 3696 Email: admin@seahospital.org.uk Website: www.seahospital.org.uk Address: 29 King William Walk, Greenwich, London, SE10 9HJ, United Kingdom The Seafarers Hospital Society (SHS) is a ...
Seafarers' Advice & Information Line (SAIL)
Not yet followed by anyone Charity Number: 1064404 Address: 30 King William Walk, Greenwich, London Postcode: SE10 9HU Phone: 0800 160 1842 Website: www.sailine.org.uk Email: advice@sailine.org.uk Summary: Seafarers' Advice and Information Line ...
Turn2Us
Website: www.turn2us.org.uk Helpline: 0808 802 2000 (open Monday-Fridays 9am to 5pm) Summary: Turn2Us is a national charity providing practical help to people who are struggling financially. The site contains a Benefits Calculator which allows you to ...
(function () {
'use strict';
// Only run on the KB root page
if (!/\/kb\/seafarer-support\/?$/.test(window.location.pathname)) return;
var CATEGORY_ID = '233149000000358041';
var MAX_WAIT_MS = 10000;
var POLL_INTERVAL_MS = 200;
var elapsed = 0;
function getStore() {
if (window.reduxStore) return window.reduxStore;
if (window._store) return window._store;
var all = document.querySelectorAll('*');
for (var i = 0; i < all.length; i++) {
var keys = Object.keys(all[i]);
for (var j = 0; j < keys.length; j++) {
if (keys[j].indexOf('__reactContainer') === 0) {
try { return all[i][keys[j]].child.memoizedProps.store; } catch (e) {}
}
}
}
return null;
}
function getPortalId() {
var resources = window.performance.getEntriesByType('resource');
for (var i = 0; i < resources.length; i++) {
var m = resources[i].name.match(/portalId=([^&]+)/);
if (m) return m[1];
}
return null;
}
var timer = setInterval(function () {
elapsed += POLL_INTERVAL_MS;
if (elapsed > MAX_WAIT_MS) { clearInterval(timer); return; }
var store = getStore();
if (!store) return;
var kb = store.getState().KBUIState;
if (!kb || !kb.subCategoryWithArticles || kb.subCategoryWithArticles.length === 0) return;
if (!kb.isNext) { clearInterval(timer); return; }
clearInterval(timer);
var portalId = getPortalId();
if (!portalId) return;
var base = window.location.origin + '/portal/api/kbCategory/' +
CATEGORY_ID + '/articles?portalId=' + portalId;
Promise.all([
fetch(base + '&from=1&limit=9').then(function (r) { return r.json(); }),
fetch(base + '&from=10&limit=9').then(function (r) { return r.json(); })
]).then(function (results) {
var sections = Object.values(results[0].data).concat(Object.values(results[1].data));
if (!sections.length) return;
store.dispatch({
type: 'KB_SUB_CATEGORIES_WITH_ARTICLES_BY_CATEGORY_SUCCESS',
data: { list: sections, categoryId: CATEGORY_ID, isNext: false, page: 1 }
});
}).catch(function () {});
}, POLL_INTERVAL_MS);
})();