Приветствую. Есть функция, которая отправляет письмо на почту.
exports.handler = async (event, context) => {
const { name, phone, email } = JSON.parse(event.body);
... отправка письма ...
return {
statusCode: 200
};
};
Через Postman - все ок.
Через
CORS Anywhere - все ок.
Через axios, fetch и т.д. (все, что с фронта):
Access to fetch at 'https://functions.yandexcloud.net/***********' from origin 'https://xd71v.***********.io' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
POST https://functions.yandexcloud.net/*********** net::ERR_FAILED
Заголовок "Access-Control-Allow-Origin" в тело ответа добавлял - без изменений.
Подскажите в какую сторону смотреть, куда копать. Спасибо.