11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
import { escapeXml } from "../voice-mapping.js";
|
|
|
|
export function generateNotifyTwiml(message: string, voice: string): string {
|
|
return `<?xml version="1.0" encoding="UTF-8"?>
|
|
<Response>
|
|
<Say voice="${voice}">${escapeXml(message)}</Say>
|
|
<Hangup/>
|
|
</Response>`;
|
|
}
|
|
|