The Aviation Ministry welcomes you to our website. We have a lot to offer for a variety of interests involving aviation and missions.

Medical Air Transportation

Obtaining air transportation for medical needs.
Baptists on Mission’s Aviation Ministry member pilots provide air transportation free of charge to qualified patients. We do not schedule flights ourselves, but go through Angel Flight of Mid Atlantic.

To begin the process
Inside North Carolina, call Angel Flight Mid-Atlantic at 1-800-296-3797. Outside of North Carolina, visit the website of the National Patient Travel Hotline or call them at 1-800-296-1217. They will guide you through the qualification process and determine which Volunteer Pilot Organization would be best suited for your travel.

Help our Angels Fly

One of the unique aspects of the Baptists on Mission Aviation Ministry is that we provide a fuel fund to assist pilots in making flights. The fund is open to donations from individuals, churches, and any other group. If any of our pilots have speaking engagements on behalf of the ministry, please mention the fuel fund.

Donations may be sent to:
Baptists on Mission, PO Box 1107 Cary, NC 27512

Please write on your check that it is for the Aviation Ministry Fuel Fund. Thank you for your service and support.

Ground Angels

Ground Angels are responsible for meeting the inbound Angel Flight and driving passengers to treating facility, hotel and/or doctor office. They will also pick patients up when their appointment is complete and deliver them back to airport for outbound Angel Flight. Ideally, Ground Angels “host” the patient to make sure their needs are met while they are in their care. This is a great way to meet people’s needs in Jesus’ name.

Pilot Liability Protection

A proposed law will also make volunteers who fly cancer patients to treatments and sick children to medical appointments fit the legal meaning of the term Good Samaritans.

For the full story, check out AvWeb’s Newsletter

Donations

Donate online for the Aviation Ministry Fuel Fund. Thank you for your service and support.

Notice: Test mode is enabled. While in test mode no live donations are processed.

$
Select Payment Method
Personal Info

function readyHandler() { let form = document.querySelector(".give-form-690"); if (!form) form = document.querySelector(".give-recurring-form"); let submitButton = document.querySelector("#give-recurring-update-submit"); let submitButtonDefaultText = ''; let loadingAnimation = ''; if (form) { if (!submitButton) submitButton = form.querySelector("#give-purchase-button"); submitButtonDefaultText = submitButton.value; loadingAnimation = form.querySelector('input[type="submit"].give-submit + .give-loading-animation'); submitButton.addEventListener("click", sendPaymentDataToAnet); /** * Prevent checkValidity() from returning a wrong false result when setCustomValidity() is set * * @see https://stackoverflow.com/a/70746845 * @see https://www.jabcreations.com/blog/fix-checkvalidity-returning-false-for-valid-form-field */ for (let i = 0; i < form.elements.length; i++) { form.elements[i].addEventListener('change', function (event) { event.target.setCustomValidity(''); }); } } async function sendPaymentDataToAnet(e) { e.stopImmediatePropagation(); if (form.checkValidity() === false) { return; } e.preventDefault(); if (give_global_vars.purchase_loading) submitButton.value = give_global_vars.purchase_loading; submitButton.disabled = true; if (loadingAnimation) loadingAnimation.style.display = "block"; authData = {}; authData.clientKey = "6Z6v6RDqxS83wPC4RQ4qAYJ5db9k92XVb4Y3kvdCfc6hT8hgWxRA74ptYh7XJu5r"; authData.apiLoginID = "7wm4N2aAd"; const secureData = {}; secureData.authData = authData; const cardData = {}; cardData.cardNumber = document.getElementById("card_number-690").value.replace(/\s/g, ''); //2223000010309711 cardData.month = document.getElementById("card_exp_month-690").value; //12 cardData.year = document.getElementById("card_exp_year-690").value.slice(-2); //34 cardData.cardCode = document.getElementById("card_cvc-690").value; //147 secureData.cardData = cardData; await dispatchData(secureData); } function dispatchData(secureData) { return new Promise(function (resolve) { Accept.dispatchData(secureData, responseHandler); resolve("Accept.dispatchData"); }); } function responseHandler(response) { try { if (response.messages.resultCode === "Error") { submitButton.disabled = false; submitButton.value = submitButtonDefaultText; if (loadingAnimation) loadingAnimation.style.display = "none"; let i = 0; while (i < response.messages.message.length) { console.log( response.messages.message[i].code + ": " + response.messages.message[i].text, ); /** * @see https://developer.authorize.net/api/reference/features/acceptjs.html#Appendix_Error_Codes */ if ('E_WC_05' === response.messages.message[i].code) { const cardNumberInput = document.getElementById("card_number-690"); cardNumberInput.setCustomValidity(response.messages.message[i].text); submitButton.click(); break; } if ('E_WC_06' === response.messages.message[i].code || 'E_WC_07' === response.messages.message[i].code || 'E_WC_08' === response.messages.message[i].code) { const cardExpiryInput = document.getElementById("card_expiry-690"); cardExpiryInput.setCustomValidity(response.messages.message[i].text); submitButton.click(); break; } if ('E_WC_15' === response.messages.message[i].code) { const cardCvcInput = document.getElementById("card_cvc-690"); cardCvcInput.setCustomValidity(response.messages.message[i].text); submitButton.click(); break; } if ('E_WC_24' === response.messages.message[i].code) { const accountNumberInput = document.getElementById("account-number-690"); accountNumberInput.setCustomValidity(response.messages.message[i].text); submitButton.click(); break; } if ('E_WC_25' === response.messages.message[i].code) { const routingNumberInput = document.getElementById("routing-number-690"); routingNumberInput.setCustomValidity(response.messages.message[i].text); submitButton.click(); break; } if ('E_WC_26' === response.messages.message[i].code) { const nameOnAccountInput = document.getElementById("name-on-account-690"); nameOnAccountInput.setCustomValidity(response.messages.message[i].text); submitButton.click(); break; } if ('E_WC_27' === response.messages.message[i].code) { const accountTypeInput = document.getElementById("account-type-690"); accountTypeInput.setCustomValidity(response.messages.message[i].text); submitButton.click(); break; } if (response.messages.message[i].code) { submitButton.setCustomValidity('Authorize.Net Error: ' + response.messages.message[i].code + ' - ' + response.messages.message[i].text); submitButton.click(); break; } i = i + 1; } } else { paymentFormUpdate(response.opaqueData); } } catch (error) { console.log(error); } } function paymentFormUpdate(opaqueData) { form.querySelector("#give_authorize_data_descriptor").value = opaqueData.dataDescriptor; form.querySelector("#give_authorize_data_value").value = opaqueData.dataValue; clearSensitiveData(); form.submit(); } function clearSensitiveData() { document.getElementById("card_number-690").value = '0000000000000000'; document.getElementById("card_expiry-690").value = '00 / 00'; document.getElementById("card_exp_month-690").value = '00'; document.getElementById("card_exp_year-690").value = '00'; document.getElementById("card_name-690").value = '0000000000000000'; document.getElementById("card_cvc-690").value = '000'; } } // Check if the DOMContentLoaded has already been completed if (document.readyState !== 'loading') { readyHandler(); } else { document.addEventListener('DOMContentLoaded', readyHandler); }
Credit Card Info
This is a secure SSL encrypted payment.

Billing Details

United StatesCanadaUnited KingdomAfghanistanAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua and BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarrussalamBulgariaBurkina FasoBurundiCambodiaCameroonCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos IslandsColombiaComorosCongo, Democratic People's RepublicCongo, Republic ofCook IslandsCosta RicaCote d'IvoireCroatia/HrvatskaCubaCuraçaoCyprus IslandCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEast TimorEcuadorEgyptEquatorial GuineaEl SalvadorEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGreeceGhanaGibraltarGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsHoly See (City Vatican State)HondurasHong KongHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyan Arab JamahiriyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesiaMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorth KoreaNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian TerritoriesPanamaPapua New GuineaParaguayPeruPhilippinesPitcairn IslandPolandPortugalPuerto RicoQatarReunion IslandRomaniaRussian FederationRwandaSaint HelenaSaint Kitts and NevisSaint LuciaSaint Pierre and MiquelonSaint Vincent and the GrenadinesSan MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSlovak RepublicSloveniaSolomon IslandsSomaliaSouth AfricaSouth GeorgiaSouth KoreaSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsEswatiniSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaTogoTokelauTongaThailandTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUruguayUS Minor Outlying IslandsUzbekistanVanuatuVenezuelaVietnamVirgin Islands (British)Virgin Islands (USA)Wallis and Futuna IslandsWestern SaharaWestern SamoaYemenYugoslaviaZambiaZimbabwe

AlabamaAlaskaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaOhioOklahomaOregonPennsylvaniaRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahVermontVirginiaWashingtonWest VirginiaWisconsinWyomingAmerican SamoaCanal ZoneCommonwealth of the Northern Mariana IslandsFederated States of MicronesiaGuamMarshall IslandsNorthern Mariana IslandsPalauPhilippine IslandsPuerto RicoTrust Territory of the Pacific IslandsVirgin IslandsArmed Forces - AmericasArmed Forces - Europe, Canada, Middle East, AfricaArmed Forces - Pacific

Donation Total: $25.00 One Time

Aviation Ministry Gallery

Aviation Ministry Leadership

State Coordinator
Dale Fuller
Mint Hill, NC
(704) 236-6598

Warren Brown
Denton, NC
(336) 241-3006

Bob Oglesby
Kernsville, NC
(336) 996-6879

Eric Perdew
Greensboro, NC
(336) 643-2518

Phil Plemmons
Candler, NC
(828) 275-9506

Bob Joyner
Mooresville, NC
(704) 517-9973

Ken Millsaps
Troutman, NC
(828) 635-1559

Opportunities

No events found for the selected categories.

Join the Community

Stay informed with mission news and ways to get involved.
By clicking Subscribe, you are agreeing to our Privacy Policy.